em和rem
Posted 佳琪欧尼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章