Home >Web Front-end >Front-end Q&A >How to use html dd tag

How to use html dd tag

藏色散人
藏色散人Original
2019-05-26 14:32:325538browse

html The dd tag is used to define the definition part of the defined entry in the list. All browsers support the

tag.

How to use html dd tag

#html How to use the dd tag?

Function: Define the definition part of the definition entry in the definition list.

Description: NONE

Note: All browsers support the

tag.

html dd tag usage example

<html>
<body>
<h2>一个定义列表:</h2>
<dl>
   <dt>计算机</dt>
   <dd>用来计算的仪器 ... ...</dd>
   <dt>显示器</dt>
   <dd>以视觉方式显示信息的装置 ... ...</dd>
</dl>
</body>
</html>

Effect:

How to use html dd tag

The above is the detailed content of How to use html dd tag. 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