html - bootstrap spans not floating in ie8 -
may can help. have following html. supposed displayed div1 , div 2 next each other. not happening in ie8. missing ?
<div class="row-fluid"> <div class="span3">content here</div> <div class="span9">content here</div> </div> i have normalize.css , bootstrap.css included in head section of page. ff , chrome display div properly.
this css
.row-fluid .span3 { width: 20.8333%; } .row-fluid .span9 { width: 79.1667%; } .row-fluid [class*="span"] { display: block; width: 100%; min-height: 30px; -moz-box-sizing: border-box; float: left; margin-left: 0%; }
you can float them . use float:left style on left div
<div class="row-fluid"> <div style="float:left" class="span3">content here</div> <div class="span9">content here</div> </div>
Comments
Post a Comment