ruby on rails - Bootstrap Grid isn't working properly -


i installed bootstrap rails , decided test out making grid. code.

<div class="row">   <div class="span4">     <h1>about creator</h1>         <p>          </p>   </div>        <div class="span8">         <h1>about site</h1>             <p>              </p>       </div> </div> 

this looks like. can see, it's in 2 rows, should in 2 columns. there doesn't seem wrong code far can see. don't think made mistake during installation, because when installed bootstrap, automatically stylized webapp. help?

what version of bootstrap using? in recent versions of bootstrap syntax <tag class="col-xs-4"> rather <tag class="span4">

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>  <div class="row">    <div class="col-xs-4">      <h1>about creator</h1>          <p>            </p>    </div>          <div class="col-xs-8">          <h1>about site</h1>              <p>                </p>        </div>  </div>


Comments

Popular posts from this blog

dns - How To Use Custom Nameserver On Free Cloudflare? -

python - Pygame screen.blit not working -

c# - Web API response xml language -