html 两个并列div样式
Posted 流星小子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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; }
以上是关于html 两个并列div样式的主要内容,如果未能解决你的问题,请参考以下文章