CSS Bootstrap - Horizontal nav using ul li right aligned, and -


i using twitter bootstrap 2.3, need menu aligned right , need anchor have diferent widt, depending on size of world inside anchor. next code, it's working, leave empty columns offset class, not sure there better achieve same result technique. don't know how same "empty space separation" between each li, each li having different width.

<div class="row_fluid">   <ul class="menu_logged span7 offset5">     <li class="span1 offset6"><a>test</a></li>     <li class="span1"><a>medium phrase</a></li> <li class="span1">123</li> <li class="span1">hello world</li>     <li class="span2">back</li>   </ul> </div> 

any help? thank you


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -