I have a page that uses Bootstrap 3. I am attempting to fix some issues with the borders. My code looks like the following and a Bootply can be found here.
<div class="container">
<div class="row">
<div class="col-md-4" style="border-color:#eee; border-style:solid; border-width:1px 0 1px 1px; min-height:30px;">
</div>
<div class="col-md-4" style="border-color:#eee; border-style:solid; border-width:1px 0 1px 1px; min-height:30px;">
<div>
<label class="control-label">First Name</label><br>
<input type="text" title="" class="form-control">
<p>Please enter your first name</p>
</div>
</div>
<div class="col-md-4" style="border-color:#eee; border-style:solid; border-width:1px 1px 1px 1px; min-height:30px;">
</div>
</div>
</div>
I am trying to get a border around each column in the row. No matter what I do, I cannot get the rows to be the same height. What do I need to do to get the columns to be the same height?
Thanks