css中常用的单位有:px,em,rem
px表示像素,相对于显示器
em表示元素单位,相对于当前元素的字体大小
rem根元素单位 r=root
px,em,rem默认关系:1em=1rem=16px;
div{
width:100px;
height:200px;
}
div{
font-size:1em;
}
div{
font-size:1rem;
}
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!