Not sure if this will help since I'm not sure if I understand right but you wouldn't have to specify border-left, border-right, use shorthand syntax when dealing with border property. Something like:
Code:
#mainbox{
border: 1px solid #000;
}
Code:
<div id="mainbox">
Content here with a border all the way around
</div>
This will give your div a border all the way around, unless you only want a left or right border. Graphic would probably work too, I just don't understand what you're saying in regards to it
Bookmarks