I need help arranging the E & F divs above the C div for tablet view on a webpage I'm currently working on. I've been trying to find a solution, but so far, nothing has worked. Any suggestions would be greatly appreciated.
HTML:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<div class="container-fluid">
<div class="row flex-container">
<div style="border: 1px solid white;" class="col-lg-3 col-md-5">A</div>
<div style="border: 1px solid white;" class="col-lg-6 col-md-7">B</div>
<div style="border: 1px solid white;" class="col-lg-3 col-md-12">C</div>
<div class="col-lg-3 col-md-5" style="border: 1px solid white;">D</div>
<div class="col-lg-6 col-md-7" style="border: 1px solid white;">E</div>
<div class="col-lg-3 col-md-12" style="border: 1px solid white;">F</div>
</div>
</div>
CSS:
.container {
background-color: white;
text-align: center;
padding: 10px;
}
.row > div {
padding: 10px;
}
div {
background-color: #2196F3;
}