Creating a responsive layout with nested divs using Bootstrap Check out my HTML code below:
<div class="container-fluid" style="height: 350px;">
<div class="row-fluid clearfix" style="height: 100%">
<div class="col-md-9 column" style="height: 100%;">
<div class="row clearfix" style="height: 50%;">
<div class="col-md-4 column" style="height: 100%;background-color: red"></div>
<div class="col-md-4 column" style="height: 100%;background-color: green"></div>
<div class="col-md-4 column" style="height: 100%;background-color: blue"></div>
</div>
<div class="row clearfix" style="height: 50%;">
<div class="col-md-12 column" style="height: 100%;background-color: pink"></div>
</div>
</div>
<div class="col-md-3 column" style="height: 100%;background-color: yellow"></div>
</div>
</div>
Output:
When you increase the browser screen width, the green and blue colored divs seem to be missing.
My expected output:
I would appreciate your assistance in resolving this issue.