The dl tag of
html defines the definition list. The [
] tag is used to combine [
- ] and [
- ]. The code is [
- computer dt>
- The instrument used for calculation... ...
].
The operating environment of this tutorial: windows7 system, html5 version, DELL G3 computer.
Definition and usage
##
The tag defines the definition list.
The tag is used to combine <dt> (defines the item in the list) and <dd> (describes the item in the list).
Examples
<dl> <dt>计算机</dt> <dd>用来计算的仪器 ... ...</dd> <dt>显示器</dt> <dd>以视觉方式显示信息的装置 ... ...</dd> </dl>
Related learning recommendations:
The above is the detailed content of What does dl in html mean?. For more information, please follow other related articles on the PHP Chinese website!