"Reprint please retain the integrity of the content of the Wind network article, if you do not comply with this principle, we will retain the right to pursue legal responsibility"
<ol> Label
Definitions and usage
<ol> label has a sequence table defined.
Differences between HTML 4.01 and HTML 5
In HTML 4.01, it is not favoured to use the "start" attribute, which is allowed in HTML 5.
In HTML 4.01, the "compact" and "type" attributes are not favoured, and the two properties are no longer supported in HTML 5.
Tips and comments
Wind Network (www.ithov.com) Tip: Please use CSS to define the type of list.
Example
<ol>
<li>Coffee</li>
<li>Tea</li>
</ol>
<ol>
<li start= >Coffee</li>
<li>Tea</li>
</ol>
Property
Property Value Description 4 5 compact compact_rendering disapproved. Use CSS instead. 4 &http://www.aliyun.com/zixun/aggregation/37954.html ">nbsp; Start Start_on_number Specify the starting number. 4 5 Type A
a
I
I
1 stipulates the type of list. Disagree. Use CSS instead. 4
Standard properties
Class, Contenteditable, ContextMenu, dir, draggable, id, irrelevant, lang, ref, Registrationmark, TabIndex, template, For a complete description of the title, visit the standard properties in HTML 5.
Event Properties
Onabort, onbeforeunload, onblur, onchange, onclick, OnContextMenu, ondblclick, Ondrag, Ondragend, OnDragEnter, OnDragLeave, OnDragOver, ondragstart, OnDrop, OnError, onfocus, onkeydown, onkeypress, onkeyup, onload, OnMessage, OnMouseDown, OnMouseMove, onmouseover, onmouseout, onmouseup, OnMouseWheel, OnResize, Onscroll, Onselect, onsubmit, OnUnload for a complete description, visit the event properties in HTML 5.
Tiy instance
Ordered list
<html>
<body>
<h4> an ordered list:</h4>
<ol>
<li> Coffee </li>
<li> Tea </li>
<li> Milk </li>
</ol>
</body>
</html>
This example shows a sequence table.