这一集给大家介绍的是CSS
中的定位
。定位分为两种,分别是相对定位
与绝对定位
。
<html>
<head>
<meta charset="utf-8">
<style>
#parent {
background-color: yellow;
width: 800px;
border:1px solid;
}
#child1, #child2 {
width: 300px;
height: 300px;
}
#child1 {
background-color: darkgrey;
}
#child2 {
background-color: #1f99b0;
}
</style>
</he...