标签:dev code 注意 字符 距离 代码 改变自己 style 内容
line-height
属性值可以使用固定值如:20px..和百分比如:20%。line-height
属性实践,实践内容如:将p
标签行高设置为20px。代码块
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>设置字符和单词距离</title>
<style>
p{
line-height: 20px;
}
</style>
</head>
<body>
<p>成功不是打败别人,而是改变自己。</p>
<p>成功不是打败别人,而是改变自己。</p>
<p>成功不是打败别人,而是改变自己。</p>
</body>
</html>
结果图
注意:使用百分比如下简陋的代码块。
<style>
p{
line-height: 20%;
}
</style>
标签:dev code 注意 字符 距离 代码 改变自己 style 内容
原文地址:https://www.cnblogs.com/lq0001/p/11879159.html