贫民窟里的程序高手

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
     
        body{
         
            margin:0;
        }
     
        .stage{
             
            position:relative;
        }
         
        .left{
         
            position:absolute;
            left:0;
            top:0;
            background-color:green;
            width:200px;
            height:500px;
        }
         
        .center{
         
            margin-left:200px;
            background-color:orange;
            height:500px;
        }
         
    </style>
</head>
<body>
    <div class="stage">
        <div class="left"></div>
        <div class="center"></div>
    </div>
</body>
</html>

 

posted on 2017-10-13 14:35  贫民窟里的程序高手  阅读(470)  评论(0编辑  收藏  举报