如您所见,第一个(黄色轮廓)div 和第二个(红色轮廓)div 之间存在间隙。我已经尝试了几件事,但到目前为止没有任何效果。
#borderLeft{
background: url(../01_templates/borderLeft.png) left no-repeat;
display:inline;
position relative;
left:50px;
float:left;
width:133px;
border:1px dotted yellow;
}
#border{
background: url(../01_templates/borderCenter.png) left repeat-x;
display:inline;
position:inherit;
width:100%;
border:1px dotted red;
margin-right:116px;
}
#borderRight{
background: url(../01_templates/borderRight.png) left no-repeat;
display:inline;
float:right;
position:absolute;
right:0px;
border:1px dotted yellow;
width:133px;
}
<div id="borderLeft"></div>
<div id="border"></div>
<div id="borderRight"></div>