<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>
if to remove these bullets, add style
ul
{
list-style-type: none;
}
One
Two
Three
To arrange these in vertical
li
{
float:left;
}
<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