程序员人生 网站导航

如何实现 CSS 两个 DIV 平行存放

栏目:htmlcss时间:2014-04-07 18:20:25

  网(LieHuo.Net)教程 如何实现 CSS 两个 DIV 平行存放?

  先看css样式部分:

以下为引用的内容:
<style>
div {display:block; width:80px; height:22px; float:left;}
div.L {border-right:0px solid #f00;}
div.R {border-right:0px solid #aaa;border-left:0px solid #aaa; margin:0px 0px 0px -1px;}
</style>

  再来看HTML代码:

以下为引用的内容:
<div class="L">
test <br />
est <br />
est <br />
est <br />
est <br />
est <br />
est <br />
est
</div>


------分隔线----------------------------
------分隔线----------------------------

最新技术推荐