关于块状元素
<style type="text/css">
.first,.second,p{background:pink;}
</style>
</head>
<body>
<div class="first">div1</div>
<div class="second">div2</div>
<p>段落1段落1段落1段落1段落1</p>
</body>
为什么div与div之间没有像div与p之间分开?
<style type="text/css">
.first,.second,p{background:pink;}
</style>
</head>
<body>
<div class="first">div1</div>
<div class="second">div2</div>
<p>段落1段落1段落1段落1段落1</p>
</body>
为什么div与div之间没有像div与p之间分开?
2017-03-24
举报