Not signed in (Sign In)

SkillShare - A place to discuss Web Standards and Web Design topics

Categories

Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  permalink
    Hi there,

    I've got this menu:

    <div id="navcontainer">
    <ul id="navlist">
    <li><a href="#">Philosophie</a></li>
    <li><a href="#">Marketing & Businesswriting</a></li>
    <li><a href="#">Unternehmensdarstellung & Geschäftsberichte </a></li>
    <li><a href="#">Marketing- & Geschäftsplanung</a></li>
    </ul>
    </div>

    and this stylesheet:

    #navlist li
    {
    display: inline;
    list-style-type: none;
    padding-right: 20px;
    }

    works fine.

    But what to do, if I want the menu with the <br> to look the same, because the links are too long.

    <div id="navcontainer">
    <ul id="navlist">
    <li><a href="#">Philosophie</a></li>
    <li><a href="#">Marketing & <br />
    Businesswriting</a></li>
    <li><a href="#">Unternehmensdarstellung &<br />
    Geschäftsberichte </a></li>
    <li><a href="#">Marketing- &<br />
    Geschäftsplanung</a></li>
    </ul>
    </div>

    TIA.
  2.  permalink
    Got it:

    float:left;
Add your comments
    Username Password
  • Format comments as (Help)