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

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

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