Within my HTML, I have divided into two col-md-6
sections. On the left side, there is a picture and on the right side, there is text. I am considering using jQuery .height()
for this layout.
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row" style="margin-bottom: 50px">
<div class="col-md-6 col-xs-6" style="float: right" style="">
<div style="background-color:red;height:456px;width:100%;"></div>
</div>
<div class="col-md-6 col-xs-6" style="text-align: right;">
<h1 id="head-font" style="font-weight: bolder; margin: 0;">TITLE</h1>
<label id="p-font" class="text-font">INFO</label>
<p class="title text-font" id="p-font" >promotion description</p>
// I want this button to display at the bottom of the image div
<div class="col-sm-12 col-lg-12 col-md-12">
<button type="submit" id="but">
Information
</button>
</div>
</div>
</div>