块级元素背影颜色
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>内联块状元素</title>
<style type="text/css">
p{background:green;}
</style>
</head>
<body>
<div>div1</div>
<div>div2</div>
<p>段落1<h1>段落1</h1>段落1段落 1段落1</p>
</body>
</html>
为什么只有第一个段落1背景色显示绿色,h1之后的都不起作用