rem和em的区别⼀、 rem的特点:
1、rem的⼤⼩是根据html根⽬录下的字体⼤⼩进⾏计算的。
2、当我们改变根⽬录下的字体⼤⼩的时候,下⾯字体都改变。
3、rem不仅可以设置字体的⼤⼩,也可以设置元素宽、⾼等属性。
⼆、em的特点:
1、字体⼤⼩是根据⽗元素字体⼤⼩设置的。
三、代码部分
1、rem的代码。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>rem</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
html{
font-size:12px;
}
.outer{
html账号密码登录界面font-size:3rem;
background:red;
width:400px;
height:400px;
position: relative;
}
.middle{
font-size:2rem;
background: aqua;phpstudy部署网站的操作步骤
width:200px;
height: 200px;
position: absolute;
left:100px;
top:100px;
}
.inner{
font-size:1rem;
background: palegreen;
width:100px;
height:100px;
position: absolute;
left:50px;
top:50px;
}
</style>
</head>
<body>
<div class="outer">
随机抽取概率的公式外部
<div class="middle">
中间
<div class="inner">内部</div>
</div>
</div>
</body>
</html>
1、em的代码
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>rem</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
html{
font-size:12px;
}
.outer{
font-size:3em;
background:red;
width:800px;
height:800px;
position: relative;
}
.middle{
font-size:2em;
background: aqua;position和location的区别
width:400px;
height: 400px;
position: absolute;
left:200px;
top:200px;
}
.
inner{
font-size:1em;
background: palegreen;
width:200px;
height:200px;
position: absolute;
left:100px;
top:100px;
}
</style>
</head>
formation audio评测
通配符指哪两个 具体所指<body>
<div class="outer">
外部
<div class="middle">
中间
<div class="inner">内部</div> </div>
</div>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论