p标签默许和div标签默许属性差不久不多,只不过margin-top和margin-bottom有一定值。而margin-top和margin-bottom与line-height有定然肢解。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>p实例</title>
<style>
.lh20{ line-height:20px}
.lh40{ line-height:40px}
</style>
</head>
<body>
<div class="lh20">
<p>第一段<br />第一段第二排<br />第一段第三排</p>
<p>第二段<br />第二段第二排</p>
</div>
<div class="lh40"> <p>第一段<br />第一段第二排<br />第一段第三排</p> <p>第二段<br />第二段第二排</p> </div> </body> </html>
实例代码,或是看看一致行高,p段落高下间距。
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h53444.shtml








