line-height继承的三种情况
- line-height=20px
body {
line-height: 20px;
font-size: 30px;
}
p {
font-size: 16px;
}
这时候p标签的line-height=20px,继承body的line-height=20px
line-hieght=1.5
body { line-height: 1.5; font-size: 30px; } p { font-size: 16px; }
这时候p标签的line-height=1.5,继承body的line-height=1.5。则p标签的line-height=16px * 1.5 = 24px
line-hieght=200%
body { line-height: 200%; font-size: 30px; } p { font-size: 16px; }
这时候p标签的line-height=60px,先计算body的line-height=200% = 200% * 30px = 60px。再p标签继承body的line-height=60px
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。