我在讀約rem
units in CSS3,並有點困惑。如果您使用rem
,您仍然使用em
還是替換它?Rems在CSS中替換ems嗎?
例如:
.selector {
margin-bottom:24px;
margin-bottom:2.4rem;
font-size:16px;
font-size:1.6rem;
}
或
.selector {
margin-bottom:24px;
margin-bottom:2.4em;
margin-bottom:2.4rem;
}
只是想弄清楚,如果rem
需要的em
的地方,或者如果它只是一個單元。
包括更好的鏈接:) – 2011-11-11 22:54:59
http://snook.ca/archives/html_and_css/font-size-with-rem涵蓋了rem和em之間的區別。 – mjwills
我覺得REM分手了。 –