base都是font-size,不管是继承的,还是自身的。
"%":为继承父元素的距离
"无单位":计算各自的距离。
看demo1:
样式
body{ font-size: 14px; line-height: 150%; } #p1{ font-size: 12px; }
结构:
我是个好人
然后通过
console.log($("#p1").css("line-height"));
获取到p的行高为21.
demo2:
样式:
.box{ font-size: 12px; line-height: 1.5; } #p2{ font-size: 16px; }
结构:
猪猪猪猪猪猪
然后通过
console.log($("#p2").css("line-height"));
获取到p的行高为24.