定义
定义列表由<dl>元素,并通常包含一系列术语及其定义,在<dl>元素内部,经常能看到成对的<dt>和<dd>元素,<dt>元素用来包含被定义的术语。<dd>元素用来包含定义
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <title>TODO supply a title</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <div>定义列表</div> <dl> <dt>定义</dt> <dd>定义的不同解释</dd> <dt>定义</dt> <dd> 定义的不同解释</dd> <dd>定义的不同解释</dd> <dt>定义</dt> <dt>定义</dt> <dd>定义的不同解释</dd> </dl> </body> </html>