Home > Article > Web Front-end > How to Achieve Optimal Stacking of Variably-Sized Divs in Bootstrap Without Rows?
Bootstrap: Achieving Optimal Stacking of Variably-Sized Divs
The provided layout features multiple divs of varying heights that must be stacked in a compact manner. Bootstrap's row system, while convenient, hinders optimal stacking in this scenario. Hence, a pure CSS solution is sought to overcome this limitation.
SOLUTION
Instead of using Bootstrap's row system, consider leveraging the ".visible-sm, .visible-md, .visible-lg" classes in conjunction with the "clearfix" class. This strategy effectively clears floats according to different screen sizes.
Implementation:
<!-- Clear floats in medium and large screens --> <div class="clearfix visible-md visible-lg"></div> <!-- Clear floats in small screens --> <div class="clearfix visible-sm"></div>
For reference, see Bootstrap 3 documentation.
This approach ensures that the divs stack appropriately, optimizing the layout's overall appearance and functionality across various screen resolutions.
The above is the detailed content of How to Achieve Optimal Stacking of Variably-Sized Divs in Bootstrap Without Rows?. For more information, please follow other related articles on the PHP Chinese website!