gurayyarar / AdminBSBMaterialDesign

AdminBSB - Free admin panel that is based on Bootstrap 3.x with Material Design
https://gurayyarar.github.io/AdminBSBMaterialDesign
MIT License
2.74k stars 1.56k forks source link

How to create equal height div irrespective of content in it #158

Open vishaalmandge opened 5 years ago

vishaalmandge commented 5 years ago

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

glavrjk commented 4 years ago
<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>