Are you in need of a Bootstrap grid that is compatible with the Internet Explorer browser?
If so, take a look at the example provided below.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<style>
.div
{
height:100px;
}
.div2
{
height:200px;
}
</style>
</head>
<body>
<div class="container-fluid">
<h1>Grid</h1>
<p>In large screen : head, body on left stacking and image on right covering height of head and body.</p>
<p>In small screen : Head, image and body stacking, full width; image in middle.</p>
<p>Resize the browser window to see the effect.</p>
<div class="row">
<div class="col-lg-6 col-sm-12 div" style="background-color:orange;">
Heading-<br>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</div>
<div class="col-lg-6 col-sm-12 div2 pull-right" style="background-color:green;">
Image-<br> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.
</div>
<div class="row">
<div class="col-lg-6 col-sm-12 div" style="background-color:yellow;">
Body-<br> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto.
</div>
</div>
</div>
</div>
</body>
</html>
Make sure to run the code in a browser for accurate results.
Output on a large screen:
https://i.sstatic.net/8aOYs.png
Output on a small screen:
https://i.sstatic.net/cMyIE.png
You can customize the code according to your specific requirements.
If there was any misunderstanding from our end based on your description above, please let us know. We will make necessary corrections and provide further suggestions.