1. 程式人生 > >css總結6:行高和字體大小的關系

css總結6:行高和字體大小的關系

屬性 大小 分享 spa bubuko 行高 ron col OS

1 CSS line-height 屬性

代碼:

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

運行後:70%與200%寬高

技術分享圖片

技術分享圖片

2 CSS font-size 屬性

h1 {font-size:250%;}
h2 {font-size:200%;}
p {font-size:100%;}

技術分享圖片

兩者特點:

1 一行文字行高和父元素高度一致的時候,垂直居中顯示

2 行高:文字高度+上下邊距

技術分享圖片

css總結6:行高和字體大小的關系