<!DOCTYPE html>
<html>
    <head>
        <meta charset="{CHARSET}">
        <title></title>
        <style type="text/css">
            #a{
                border: 5px solid blue;
                width: 100px;
                height: 100px;
                margin: 10px;
                background-color: #ADFF2F;
                position: fixed;
            }
            #aa{
                border: 5px solid blue;
                width: 100px;
                height: 100px;
                margin: 10px;
                background-color: #ADFF2F;
                left: 20px;
                top: 50px;
                position: relative;
            }
        </style>
    </head>
    <body>
        <div id="a">a
        </div>
        <div id="aa">aa
        </div>
    </body>
</html>

a
aa
posted on 2017-07-17 08:56  唯懿  阅读(90)  评论(0编辑  收藏  举报