欢迎来到Cecilia陈的博客

孤独,是人一生最好的修行。

[34--CSS] fixed 固定定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        div{
            width: 100px;
            height: 100px;
            background-color: pink;
            position: fixed;
            bottom: 100px;
            right: 50px;

        }
    </style>
</head>
<body>
    <div>我在这里</div>
</body>

</html>
posted @ 2019-10-16 23:32  Cecilia陈  阅读(94)  评论(0编辑  收藏  举报