简体   繁体   English

在列内展开容器以适应引导网格中的列高

[英]Expand container inside column to fit column height in bootstrap grid

Why does the green container expand over the blue column when I set height: 100% or h-100 ?当我设置height: 100%h-100时,为什么绿色容器会在蓝色列上展开?

How can I make it to just fit the remaining height of the column?我怎样才能使它刚好适合柱子的剩余高度?

 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"> <div class="container" style="background-color: black"> <div class="row"> <div class="col-sm-6" style="background-color: red"> <p>Some</p> <p>More</p> <p>Content</p> <p>Here</p> </div> <div class="col-sm-6" style="background-color: blue"> <h3>Content I want to keep</h2> <section class="d-flex h-100" style="background-color: green"> <button class="btn btn-danger m-auto">Centered Button</button> </section> </div> </div> </div>

If I understand correctly, you want to overlay the green block into the blue block.如果我理解正确,您想将绿色块覆盖到蓝色块中。

It can't set height because there is text ( two ) in between two blocks.它无法设置高度,因为两个块之间有文本( two )。

 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css"> <div class="container" style="background-color: black"> <div class="row"> <div class="col-sm-6" style="background-color: red"> <p>Some</p> <p>More</p> <p>Content</p> <p>Here</p> </div> <div class="col-sm-6" style="background-color: blue"> <section class="d-flex h-100" style="background-color: green"> <button class="btn btn-danger m-auto">Centered Button</button> </section> </div> </div> </div>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM