rem詳解及使用方法
阿新 • • 發佈:2018-12-23
好像有一段時間沒有寫部落格了……今天剛好總結一下rem的使用方法
首先,先說一個常識,瀏覽器的預設字型高都是16px。步入正題-----〉
- 相容性:
目前,IE9+,Firefox、Chrome、Safari、Opera 的主流版本都支援了rem。
就算對不支援的瀏覽器,應對方法也很簡單,就是多寫一個絕對單位的宣告。這些瀏覽器會忽略用rem設定的字型大小。
- 使用%單位方便使用
- 使用方法
注意,rem是只相對於根元素htm的font-size,即只需要設定根元素的font-size,其它元素使用rem單位設定成相應的百分比即可;
例子:
1 /*16px * 312.5% = 50px;*/ 2 html{font-size: 312.5%;}
1 /*50px * 0.5 = 25px;*/ 2 body{ 3 font-size: 0.5rem; 4 font-size\0:25px; 5 }
一般情況下,是這樣子使用的
1 html{font-size:62.5%;} 2 body{font-size:12px;font-size:1.2rem ;} 3p{font-size:14px;font-size:1.4rem;}
- 優點
用一個東西肯定要知道它的好處啦,由於其他字型大小都是基於html的,所以在移動端做適配的時候,可以使用這樣的方法
1 @media only screen and (min-width: 320px){ 2 html { 3 font-size: 62.5% !important; 4 } 5 } 6 @media only screen and (min-width: 640px){ 7 html { 8 font-size: 125% !important; 9 }10 } 11 @media only screen and (min-width: 750px){ 12 html { 13 font-size: 150% !important; 14 } 15 } 16 @media only screen and (min-width: 1242px){ 17 html { 18 font-size: 187.5% !important; 19 } 20 }
這樣子就能做到僅僅改變html的字型大小,讓其他字型具有“響應式”啦。
又是午睡時間,如果本文有不正確的地方,請指出^_^