Notes to "Introduction to Web Design | Ordered
1.
The TYPE attribute supports the following values: A, a, I, i, or 1.
W3C
"Type=" : Deprecated
Deprecated Example:
<OL TYPE = "I">
<LI>Item one ...
<LI>Item two ...
<LI>Item three ...
</OL>
CSS Example:
<STYLE type="text/css">
OL.roman { list-style-type: upper-roman }
</STYLE>
<BODY>
<OL class="roman">
<LI> Item one ...
<LI> Item two ...
<LI> Item three ...
</OL>
</BODY>
2.
The START attribute specifies at what point to start counting from.
w3c
"Start=" : Deprecated
Additional Resources:
Return to "Introduction to Web Design | Ordered Lists"
|