Hi,

I have a working nab bar and want to move the right most item all the way to 
the right. I tried the following:

<nav>
        <ul>
                <li>….  [insert links here]
                <li><a href="../rightlink.html" 
class="rightitem">allright</a></li>
        </ul>
</nav>

nav ul 
{
        margin: 0;                                      /* reset */
        padding: 0;                                     /* reset */
        list-style-type: none;          /* no bullets */
        overflow: hidden;                       
}

nav li 
{
        display: inline;        
        float: left;            
}


nav a.rightitem
{
    float: right;
}



But that doesn't do what I am looking for.

Any suggestions?

Thanks,

- Koen.
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to