网(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> |