html 两个并列div样式

1.html 代码

<html>
<head>
    <link rel="stylesheet" href="cs2.css">
</head>
<body>
    <div class="wapper">
        <div class="content"></div>
    </div>
  
</body>
</html>

 

2.css 样式

*{
    margin: 0;
    padding: 0;
}
.right{
    position: absolute;
    right: 0;
    width: 100px;
    height: 100px;
    background-color:#fcc;
   
}
.left{
    margin-right: 100px;
    height: 100px;
    background-color: #123;
}

 

posted @ 2018-11-28 23:13  流星小子  阅读(590)  评论(0编辑  收藏  举报