Monday, May 14, 2012

ul-li style

<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
  • One
  • Two
  • Three

if to remove these bullets, add style
ul
{
list-style-type: none;
}

One
Two
Three

To arrange these in vertical
li
{
float:left;
}

No comments:

Post a Comment