Home  >  Article  >  Web Front-end  >  How to set row height in bootstrap

How to set row height in bootstrap

尚
Original
2019-07-27 14:36:0411355browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn