Attribute for <LI ...>
VALUE = integer
Usage Recommendation |
don't use it |
VALUE
is another way to confuse your readers. Used in an ordered list, VALUE
causes the browsers to skip to the given number and count from there.
this code |
produces this |
<OL>
<LI >Start at the beginning
<LI >Build your arguments carefully
<LI VALUE=13 >Skip to the middle
<LI >Hope everyone understands
</OL>
|
- Start at the beginning
- Build your arguments carefully
- Skip to the middle
- Hope everyone understands
|