asked on
/* the html */
<div class="bottom-corners">
<div class="left"></div>
<div class="mid"></div>
<div class="right"></div>
</div>
/* the css */
.bottom-corners .left {
float: left;
width: 10px;
height: 10px;
background-image: url('/img/interface/tr_corner_left.gif');
background-repeat: no-repeat;
}
.bottom-corners .mid {
height: 10px;
background-image: url('/img/interface/tr_flow.gif');
background-repeat: repeat-x;
margin: 0px 10px;
}
.bottom-corners .right {
float: right;
width: 10px;
height: 10px;
background-image: url('/img/interface/tr_corner_right.gif');
background-repeat: no-repeat;
}
problem.jpg