0

I am pretty new to bootstrap on ASP.NET MVC. I would like to know what is the difference between the following col types?

col-lg-##  
col-md-##
col-sm-##
col-xs-##

When is the ideal type to be used?

ekad
  • 14,436
  • 26
  • 44
  • 46
Slick Guy
  • 69
  • 6
  • 1
    possible duplicate of [Understanding the grid classes ( col-sm-# and col-lg-# ) in Bootstrap 3](http://stackoverflow.com/questions/18146775/understanding-the-grid-classes-col-sm-and-col-lg-in-bootstrap-3) – Brett Jul 28 '15 at 05:43
  • Take a look at the bootstrap docs; it is very well documented. What you are looking for is the "Grid System" section of the CSS documentation. http://getbootstrap.com/css – Sam Jul 28 '15 at 05:43

1 Answers1

0

I would first recommend spending some time with the documentation http://getbootstrap.com/css/#grid Generally, the size indications correspond to the screen size in which you are creating the layout....
xs - Extra small devices Phones (<768px)
sm - Small devices Tablets (≥768px)
md - Medium devices Desktops (≥992px)
lg - Large devices Desktops (≥1200px)