Skip to content Skip to sidebar Skip to footer

How To Place A Div In The Top Right Corner Using Twitter Bootstrap

I'm trying to get a div that contains something like: You're logged as 'username' (logout?) But when I try to put it in it gets placed beneath

Solution 1:

You need to make span6 a class on a div which is contained in a a "row"

BootStrap

<div class="row">
  <div class="span9">
    Level 1 column
    <div class="row">
      <div class="span6">Level 2</div>
      <div class="span3">Level 2</div>
    </div>
  </div>
</div>

Post a Comment for "How To Place A Div In The Top Right Corner Using Twitter Bootstrap"