<ul type=""><li type="">
Browser |
|
---|---|
Type |
The type attribute of the UL element changes the marker type.
The type attribute in the UL tag : Applied to all items in the list.
<ul type="circle">
<li>first list item</li>
<li>second list item</li>
<li>third list item</li>
</ul>
The type attribute in the LI tag : Applied to one item.
<ul>
<li type="disc">first list item</li>
<li type="circle">second list item</li>
<li type="square">third list item</li>
</ul>
Attribute | Value | Explanation |
---|---|---|
type=" " | disc | disc styles |
circle | circle styles | |
square | square styles |
The use of this attribute is deprecated. (Use CSS instead)