p.small {line-height:90%} p.big {line-height:200%}

来源:学生作业学帮网 编辑:学帮网 时间:2024/06/03 17:11:31

p.small {line-height:90%} p.big {line-height:200%}

带有small类的p标签,行高设为90%;带有big类的p标签,行高设为200%
如图

代码:
<html>
<head><title></title>
<style>
 p {background-color:#F00}
 p.small {line-height: 90%} p.big {line-height: 200%}
</style>
</head>
<body >
<p class="small">small</p>
<p>normal</p>
<p class="big">big</p>
</div>
</body>
</html>