Home > Article > Web Front-end > How to set row height in bootstrap
Set the row height in bootstrap:
Just add the row-same-height class to the corresponding div,
< div class =“row row-same-height”>< / div>
You can set the height in the class:
.row- same-height { overflow:hidden; } .row-same-height> div { margin-bottom:-2000px!important; padding-bottom:2000px!important; }
Recommended: bootstrap introductory tutorial
The above is the detailed content of How to set row height in bootstrap. For more information, please follow other related articles on the PHP Chinese website!