Forum Moderators: open
<style type="text/css">
<!--
td {
border: 1px dotted #000;
}
-->
</style>
(replace 'dotted' for 'dashed' if you wish)
The only problem with this is that it outlines each cell with a border, so where you have 2 cells next to eachother you get a double thickness width.
To get an equal border width throughout the whole table you can use:
<style type="text/css">
<!--
table {
border-top: 1px dotted #000;
border-left: 1px dotted #000;
}
td {
border-bottom: 1px dotted #000;
border-right: 1px dotted #000;
}
-->
</style>