if i understand you correctly, you make a CSS file for each individual style ? no need for that, a single CSS file can contain all your styles. simply define different styles for the different borders, and use them like adam suggests...
e.g.
Code:
1pxright { border-right: 1px solid #000000; }
1pxleft {border-left: 1px solid #000000; }
1pxtop {border-top: 1px solid #000000; }
1pxbottom {border-bottom: 1px solid #000000; }
1pxsolid {border: 1px solid #000000; }
and then assign the class to the tables depending where you want the border:
Code:
<table class="1pxright">
...
</table>
<table class="1pxsolid">
...
</table>
etc etc
Bookmarks