How can I prevent the text of the second div from overlapping the first div?
- 1st div (row 12) consists of 4 columns (each spanning 3 rows)
- 2nd div contains a single row with 12 columns
<!doctype html>
<html>
<head>
<title>Solutions</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href = "css/bootstrap.min.css" rel = "stylesheet">
<link href = "css/styles.css" rel = "stylesheet">
</head>
<body>
<div class="row col-md-12" style="margin-top: 30px; height: auto;">
<div class="col-md-3 text-center" style="height: 250px;">
<div>
<img src="http://placehold.it/150x80" style="height: 80px;"/>
</div>
<div class="well" style="margin-left : 0px; margin-top: 5px;">
<div>
The Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</div>
</div>
</div>
<div class="col-md-3 text-center " style="height: 250px;">
<div>
<img src="http://placehold.it/150x80" style="height: 80px;"/>
</div>
<div class="well" style="margin-left : 0px; margin-top: 5px;">
<div>
The Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</div>
</div>
</div>
<div class="col-md-3 text-center " style="height: 250px;">
<div>
<img src="http://placehold.it/150x80" style="height: 80px;"/>
</div>
<div class="well" style="margin-left : 0px; margin-top: 5px;">
<div>
The Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</div>
</div>
</div>
<div class="col-md-3 text-center " style="height: 250px;">
<div>
<img src="http://placehold.it/150x80" style="height: 80px;"/>
</div>
<div class="well" style="margin-left : 0px; margin-top: 5px;">
<div>
The Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center" style="height: 60px; background-color: #3399cc;">
<h2 style="color: white; margin-top: 0px; line-height: 60px;">THE TEXT THAT COMES OVER!!!!!!!!!!!!!!!!!!!!</h2>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>