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.