Home  >  Article  >  Web Front-end  >  In HTML lists, what are the differences between dl(dt,dd), ul(li), and ol(li)?

In HTML lists, what are the differences between dl(dt,dd), ul(li), and ol(li)?

php中世界最好的语言
php中世界最好的语言Original
2018-01-26 09:55:223490browse

This time I will bring you the difference between dl(dt,dd), ul(li), and ol(li) in the HTML list. In the HTML list, use dl( What are the precautions for dt, dd), ul(li), ol(li)? The following is a practical case, let’s take a look.

HTML 5c69336ffbc20d23018e48b396cdd57a tag

#Definition and usage

5c69336ffbc20d23018e48b396cdd57a tag defines the definition list (definition list) .
5c69336ffbc20d23018e48b396cdd57a tag is used to combine 73de882deff7a050a357292d0a1fca94 (defines the item in the list) and 67bc4f89d416b0b8236eaa5f43dee742 (describes the item in the list).

#Example

The code is as follows:

<dl>
   <dt>计算机</dt>
   <dd>用来计算的仪器 ... ...</dd>
   <dt>显示器</dt>
   <dd>以视觉方式显示信息的装置 ... ...</dd>
</dl>

HTML ff6d136ddc5fdfeffaf53ff6ee95f185 Tag

#Definition and usage

ff6d136ddc5fdfeffaf53ff6ee95f185 Tags define an unordered list.

#Example

Unordered HTML list:

<ul>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>

HTML c34106e0b4e09414b63b2ea253ff83d6 Tags

#Definition and usage

09471ad0eb7abf3904b81228b087d334 tag defines an ordered list.

#Example

Ordered HTML list:

<ol>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

ul can be combined with ol to define menus and submenus

<ul>
    <li><a href="#">内容过滤</a><li>
    <li><a href="#">词语过滤</a></li>
    <li class="s">
        <div class="lsub">
            <div>论坛</div>
            <ol>
                <li><a href="#">论坛主题管理</a></li>
                <li><a href="#">论坛批量删帖</a></li>
            </ol>
        </div>
    </li>
<ul>

I believe you have mastered it after reading these cases For more exciting methods, please pay attention to other related articles on the php Chinese website!

Related reading:

How to set focus on HTML elements

How to use a hyperlink to open a new window and control the Window attributes

How to use a tag href attribute and onclick event

The above is the detailed content of In HTML lists, what are the differences between dl(dt,dd), ul(li), and ol(li)?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn