Forum Moderators: open
I gather you can do this using the html border frame tag, but I haven't seen this used and I wonder if there are other better ways of doing it? any thoughts? does the border frame tag work OK? thanks
To add a box around just one cell:
<TD style="border:1px solid gray">
To add a top and bottom border to a cell:
<TD> style="border-top:1px solid gray; border-bottom:1px solid gray">
To add a line after every row, in the HEAD
<style type="text/css">.myline TR {border-bottom:1px solid gray}</style>
Then in your table:
<TR class=myline>
I'm not 100% sure you can add borders to TR's with CSS, but it's worth a try.