CSS List Attributes #Part 7
List-style
dics, circle, square, decimal, lower-roman, upper-roman, lower-alpha, upper-alpha, none.
HTML Code
<ul>
<li>bharat</li>
<li>kanaiya</li>
<li>prakash</li>
</u>
CSS Code
<style>
ul
{
list-style-type: square;
}
</style>
Try it Yourself...
what you think about this article ??