Manifest markup
<OL> <LI>
<UL>
<MENU> <DIR>
<DL> <DT> <DD>
To understand this "HTML thorough analysis" of the mark classification, please see " Mark List ".
Please also understand the distinction between containment and empty tags, see "HTML concept ."
<OL> called sequential list tags. <LI> is used to indicate the list item.
The so-called order list is to add 1,2,3 before each item ... such as numbers, also known as numbered lists.
<OL> parameter setting (commonly used):
Example: <ol type= "I" start= "4" ></ol>
- type= "I"
Set number of styles, the value of five kinds, please refer to the right table, the default is Type= "1".
- Start= "4"
Set the starting number, regardless of the number of models set, its value can only be 1,2,3. Integer, the default is start= "1".
|
Type |
numbering style |
1 |
1, 2, 3, ... |
lower Alpha |
a, B, C, ... |
upper Alpha |
a, B, C, ... |
lower Roman |
i, II, III, ... |
upper Roman |
i, II, III, ... |
|
<LI> parameter setting (commonly used):
Example: <li type= "Square" value= "4" >
- type= "Square"
Only applies to the Type= list , set the symbol style, its value has three kinds, as follows, defaults to "disc":
A symbol is a column-entry symbol when type= "disc".
A symbol is a column-entry symbol when type= "Circle".
A symbol is a column-entry symbol when type= "square".
- Value= "4"
Only applies to the sequential list , set the number of that item, and thereafter the items will be incremented as the starting number, but the preceding items are unaffected and the value can only be 1,2,3. Equal integers, no default values.
Example:
HTML source Code (original) |
Browser Display Results |
My best friends: <ol> <li>michelle Wei <li>michael Wan <li>gloria Lam </ol> |
My best friends:
- Michelle Wei
- Michael Wan
- Gloria Lam
|
<UL> called unordered list tags.
The so-called unordered list is in front of each item plus,, and so on symbols, so called symbol list.
<UL> parameter setting (commonly used):
Example: <ul type= "Square" >
- type= "Square"
The set symbol style, its value has three kinds, like below, the default value is Type= "disc":
A symbol is a column-entry symbol when type= "disc".
A symbol is a column-entry symbol when type= "Circle".
A symbol is a column-entry symbol when type= "square".
Note: Since both <UL> and <LI> have type this parameter, choose one of the two as much as possible.
Example:
HTML source Code (original) |
Browser Display Results |
My homepages: <ul> <li>penpals Garden <li>icq Garden <li>software City <li>creation of webpage </ul> |
My homepages:
- Penpals Garden
- ICQ Garden
- Software City
- Creation of webpage
|
These two tags are not endorsed by the consortium and are expected to be replaced with <ul> and <ol>.
<MENU> and <dir>, basically it and <ul> are the same, in some special browsers may show <ol> effect, in the older version of IE or NC Mark <DIR> does not display symbols or numbers. The use of two marks is exactly the same as <ul>.
Example:
HTML source Code (original) |
Browser Display Results |
My homepages: <dir> <li>penpals Garden <li>icq Garden <li>software City <li>creation of webpage </dir> |
My homepages: Penpals Garden ICQ Garden Software City Creation of webpage |
<DL> is called defining a manifest tag. <DT> to mark the definition entry,<dd> is used to mark the definition content.
The so-called definition list is a two-tier list of items with no symbols or numbers.
Three tags have no common parameters. And <DT> <DD> can be used independently, just some old browsers do not support, such as IE 3.0. Commonly used tags such as <DD> can be used to make a blank before the first word in a paragraph.
Example:
original code |
< Font color= "#d700d7" ><dl> <DT> how to use Definition List Font color= "#d700d7" ><dd> A, you should is not place paragraph tag right after or before a list structure or Between the items of a list. In Cerntain contexts, the use of extra paragraph tags should always to be avoided, when you realize this concept, it are quit easy To write a HTML. <dt> other things to know <DD> Usually put only one definition tag following the definition Term tag, and more than one DD tag isn't recommanded. Besides, unlike definition List is a nonempty tag, both definition Term and definition Description are tags. </dl> |
Show results |
-
How to use Definition List
-
A list of the items of a list structure or between should not place paragraph tag right after or before. In Cerntain contexts, the use of extra paragraph tags should always to be avoided, when you realize this concept, it are quit easy To write a HTML.
-
Other things to know
-
We usually put only one definition tag following the definition Term tag, and more than one DD tag isn't recommanded. Besides, unlike definition List is a nonempty tag, both definition Term and definition Description are tags.
|
Turn from: Dynamic Network production guide www.knowsky.com