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

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/05 18:29:29
p.small {line-height:90%} p.big {line-height:200%}

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

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>