首页 > 代码库 > em和rem

em和rem

em是一个相对值,是相对于父元素的值。

body{
    font-size:62.5%;/*10/16*100%=62.5%*/
}
h1{
    font-size:2.4em;/*2.4em*10=24px*/  
}
p{
    font-size:1.4em;/*1.4em*10=14px*/
}
li{
    font-size:1.4em;/*1.4*?=14px?*/
}

 

rem -- “font size of the root element”.  rem是相对于根元素<html>.

html{font-size:62.5%;/*10/16*100%=62.5%*/}
body{font-size:1.4rem;/*1.4*10px=14px*/}
li{font-size:1.4rem;/*1.4*1.=14px*/}

 

em和rem