vote up 0 vote down star

Hi Is there way to spread out elements, (eg: <li>'s inside a <ul>), within a div?

EG: I have 3 elements, so they all get 30%

EG: I have 5 elements, so they get 20%

What is the best way to do this?

flag

3 elements, *33*% each? – ax Oct 18 at 16:25

2 Answers

vote up 0 vote down check
<html>

  <style>

    html, body {

      padding: 0;
      margin: 0;

    }

    ul.flatList {

      list-style: none;
      margin: 0;
      padding: 0;

    }

    ul.flatList li {

      width: 33.3%;  
      display: inline;
      float: left;
      text-align: center;

    }

  </style>

  <body>

    <ul class="flatList">
      <li>left
      <li>middle
      <li>right
    </ul>

  </body>

</html>
link|flag
i think he doesn't want to have the 33.3% hardcoded, but the width should dynamically adapt to the number of li elements. – ax Oct 19 at 15:50
thats what i want yeah, but not sure how – tarnfeld Oct 22 at 20:35
You could just use a bit of Javascript. Check the width of the container, and then set the widths of each div. – Andrew Johnson Oct 23 at 1:31
vote up 0 vote down

Set an explicit width of the child elements and float them left or right accordingly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.