AdminBSBMaterialDesign icon indicating copy to clipboard operation
AdminBSBMaterialDesign copied to clipboard

How to create equal height div irrespective of content in it

Open vishaalmandge opened this issue 7 years ago • 1 comments

Hello, I'm trying to make equal height div using display: flex, but it won't work. How to do this. I want these cols equal height image

vishaalmandge avatar Dec 13 '18 18:12 vishaalmandge

<style type="text/css">
            .row-flex {
                display: flex;
                display: -webkit-flex;
                flex-wrap: wrap;
            }
</style>
<div class="row-flex">
***************
          <div class="col-xs-12"></div>
          <div class="col-xs-6"></div>
          <div class="col-xs-6"></div>
**************
</div>

glavrjk avatar Feb 08 '20 10:02 glavrjk