HTML Custom List

HTML custom list

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
	<title></title>
</head>
<body>
	<dl>
		<dt></dt>
		<dd></dd>
		<dd></dd>
	</dl>
</body>

1.dt in general is the header of your list
the same content 2.dd the equivalent of ul li in
3. Customize the list for the following general
Here Insert Picture Description
like this list using the custom list using ul better than because it can put content into bold dt tag.

Guess you like

Origin blog.csdn.net/qq_36949892/article/details/90737618