html - Bootstrap span are not inline -


jsfiddle of code http://jsfiddle.net/55pqg/6/

why button1 , button2 not standing side side?

<div class="row-fluid span12" style="width: 300px">     <div class="row-fluid span6 " style="background-color: #ff0;">button1</div>     <div class="row-fluid span6  btn" style="background-color: #f0f;">button2</div> </div> 

and span work differently tables in bootstrap? (code in jsfiddle)

remove row-fluid both buttons. first button needs .btn class

<div class="span6 btn" style="background-color: #ff0;">button1</div> <div class="span6  btn" style="background-color: #f0f;">button2</div> 

js fiddle: http://jsfiddle.net/55pqg/7/


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -