12周
相对位置绝对位置
.parent{
margin: 100px auto;
width: 800px;
height: 400px;
border: 10px solid red;
/*父级设置为相对*/
position: relative;
}
.son{
width: 100px;
height: 100px;
background-color: blue;
/*子级设置为绝对*/
position: absolute;
/*水平向右移动50像素*/
/*left: 50px;*/
/*垂直向下移动100像素*/
/*top: 100px;*/
left: -110px;
top: -110px;
}
浙公网安备 33010602011771号