为什么adress的块级元素宽度与div,form,h1等不一样
课程11-2 元素分类块级元素
adress显示的背景宽度与其它不一样
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>内联块状元素</title>
<style type="text/css">
dl,table,adress,h1,form,ol,div,p{background:pink;}
</style>
</head>
<body>
<div>div1</div>
<div>div2</div>
<p>段落1段落1段落1段落1段落1</p>
<ol>ol</ol>
<form>form</form>
<h1>h1</h1>
<adress>adress</adress>
<dl>dl</dl>
</body>
</html>