关于布局的小问题
如果将图片设置为浮动,在一个DIV里一张左浮动,一张右浮动。并且向设置图片距离边框有一定距离,应该怎么写呢?求助啊!!各位大神们。关于这部分的代码如下:
.contentc{position:relative;height:auto;width:100%;}
.borderleft{float:left;background:url(../images/leftyy.png) repeat-y;height:500px;width:16px;}
.borderright{float:right;background:url(../images/rightyy.png) repeat-y;height:500px;width:16px;}
<div class="contentc">
<div class="borderleft"></div>
<div class="borderright"></div>
</div>