There are three kinds of lists: ordered list ol, unordered list ul, and custom list dl.
List display. A series of content that conforms to specific rules can be implemented using a list. (similar to arrays)
ul > li structure, internal list unordered number.
<ul>
<li>这是条目</li>
<li>这是条目</li>
<li>这是条目</li>
</ul>
ol > li structure, the sequence number is automatically added to the internal list. Ol common properties:
- start: serial number starting value
- Type: serial number type (Arabic numeral, Roman, English abc)
<ol>
<li>这是1条目</li>
<li>这是2条目</li>
<li>这是3条目</li>
</ol>
dl > dd structure, and dt represents the title of dd.
<dl>
<dt>《美好的每一天》</dt>
<dd>一部很治愈人心的文字冒险游戏。</dd>
<dt>《对你说再见》</dt>
<dd>也是一部很治愈人心的文字冒险游戏。</dd>
</dl>