View Single Post
  #8 (permalink)  
Old 11-22-2003, 11:19 AM
Distorted Distorted is offline
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Posts: 220
iTrader: 0 / 0%
Distorted is on the right pathDistorted is on the right path
Try it with an embedded style sheet like this:

[code:1:cccad6d51e]
<style type="text/css">
table {
border: 1px solid #A1A1A1;
}
</style>
[/code:1:cccad6d51e]

And, if you're trying to make a border around the table AND the cells in the table then add this to the style above:

[code:1:cccad6d51e]
td {
border: 1px solid #A1A1A1;
margin: -1px 0 0 -1px;
}
[/code:1:cccad6d51e]

The margins keep the border from doubling up.
Reply With Quote