position:relative(在相對定位的元素上設置top,right,bottom,left屬性會使其偏離其正常的位置)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>10.relative</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .relative1 {
            position: relative;
            background: red;
        }

        .relative2 {
            position: relative;
            top: -20px;
            left: 20px;
            background: greenyellow;
            width: 500px;
            height: 500px;
        }
    </style>
</head>
<body>
<div class="relative1">
    relative的表現和static同樣,除非你添加了一些額外的屬性
</div>
<div class="relative2">

</div>
</body>
</html>
複製代碼

相關文章
相關標籤/搜索