According to the document, additional small devices Phones (<768px) are always horizontal, i.e. never add up. I'm looking for a way to make meshes stacked when the screen is less than 480 pixels.
Add the col-xxs class to the columns:
@media (max-width: 480px) { .col-xxs { display:block; float:none; width: 100% } }
You can use the class "col-sm- *". This is a βsmallβ grid breakpoint, but at a level of less than 768 pixels, it will flow.
<div class="container"> <div class="row"> <div class="col-sm-4">col-sm-4</div> <div class="col-sm-4">col-sm-4</div> <div class="col-sm-4">col-sm-4</div> </div> </div>
Demo: http://bootply.com/75567
If you just want the common βall columns should be full width <480pxβ you could do something like this to keep adding extra classes to the markup:
[class^="col-"], [class*=" col-"] { display:block; float:none; width: 100%; }
Source: https://habr.com/ru/post/952101/More articles:ConditionalPanel does not support variables with a dot in the name, any work around? - rIs it possible to make OLAP CUBE in HBase? - hbaseHow to handle timejs require error? - javascriptRaw C ++ code to display table names on a compact SQL server using OLE DB - c ++IntelliJ IDEA - Multiple Pockets? - intellij-ideaConfigure Sql Server Object Explorer Right-click menu items - sqlHow to determine if a photo is a poster (not realistic)? - artificial-intelligenceFind out if the URL is violated? - iosWhy is the global ExecutionContext not the default parameter in a future block? - scalaHow to delete rows in jqgrid - jqueryAll Articles