javascript - Column being pushed down using Bootstrap -
i having issue withe bootstrap using. reason third column being pushed down. have no idea why. totally stuck on issue, happening on page reason. appreciated.
</div> <div class="profit col-md-4 align-center"> <img src="images/profit.png"> <div class="rmo"> <p>ready made arch support</p> </div> <div class="prof"> <p>we stock on 75 sizes, 6 times more other stores do. our basic orthotic offered. available take home on same day visit. fit you!</p> </div> </div> <div class="select col-md-4 align-center"> <img src="images/select.png"> <div class="cso"> <p>custom select orthotic</p> </div> <div class="sel"> <p>we have exclusive method of building custom orthotics without high cost of traditional plaster casting. of our orthotics made local , come 24-48hr turn around.</p> </div> </div> <div class="cast col-md-4 align-center"> <img src="images/cast.png"> <div class="cco"> <p>custom cast orthotics</p> </div> <div class="cas"> <p>for patients need precise correction or complex offloading offer custom cast orthotics created address specific needs. available pick within 48 hrs.</p> </div> .rmo{ font-size: 20px; font-weight: bold; } .cso{ font-size: 20px; font-weight: bold; }
your class ".cast" using positioning of left 535px , top 425px forcing down.
with bootstrap it's important place column definitions within row class , within container ensure proper padding, margins , clearing. when place col definitions class row , removed position lined up.
<div class="container"> <div class="row"> <div class="profit col-md-4 align-center"> <img src="images/profit.png"> <div class="rmo"> <p>ready made arch support</p> </div> <div class="prof"> <p>we stock on 75 sizes, 6 times more other stores do. our basic orthotic offered. available take home on same day visit. fit you!</p> </div> </div> <div class="select col-md-4 align-center"> <img src="images/select.png"> <div class="cso"> <p>custom select orthotic</p> </div> <div class="sel"> <p>we have exclusive method of building custom orthotics without high cost of traditional plaster casting. of our orthotics made local , come 24-48hr turn around.</p> </div> </div> <div class="cast col-md-4 align-center"> <img src="images/cast.png"> <div class="cco"> <p>custom cast orthotics</p> </div> <div class="cas"> <p>for patients need precise correction or complex offloading offer custom cast orthotics created address specific needs. available pick within 48 hrs.</p> </div> </div> </div> </div>
Comments
Post a Comment