元素的固定定位

枕夢發表於2017-04-28
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <style>
        #back{
            width: 80px;
            height: 80px;
            background-color: red;
            text-align: center;
            line-height: 80px;
            position: fixed;
            bottom: 50px;
            right: 30px;
            z-index: 1000;/*數值越大越先顯示*/
        }
    </style>
    <title>固定定位</title>
</head>
<body>
<div style="height: 1000px">
    <div id="back">
        返回頂部
    </div>
</div>
</body>
</html>

相關文章