html The dd tag is used to define the definition part of the defined entry in the list. All browsers support the
#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
html dd tag usage example
<html> <body> <h2>一个定义列表:</h2> <dl> <dt>计算机</dt> <dd>用来计算的仪器 ... ...</dd> <dt>显示器</dt> <dd>以视觉方式显示信息的装置 ... ...</dd> </dl> </body> </html>
Effect:
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!