CHeighlund
Programmer
I'm trying to lay out the design framework for a table-based report I've been requested to put together, and I'm running into a few problems. In trying to imitate the current dead-tree format report, I ended up creating sub-tables within the main table at a few points to display some items in the same manner. (I know there's probably an easier way around this than using internal tables; if anyone has that to offer, I'm all ears.)
For some reason, my cells aren't completely lined up the way I expected them to be. And I can't do a direct comparison, because I don't have any cell borders. The table itself has a border, as do the subtables, because of the way I built them in the code:
Why won't the individual cell borders show up? The HTML text I'm working with doesn't seem to show anything about cell borders in the tables segment, and the example pages in the book all appear to have borders around every cell.
What do I need to change in order to give the cells themselves borders?
For some reason, my cells aren't completely lined up the way I expected them to be. And I can't do a direct comparison, because I don't have any cell borders. The table itself has a border, as do the subtables, because of the way I built them in the code:
Code:
<table rules = groups border = 1 width = 100%>
Why won't the individual cell borders show up? The HTML text I'm working with doesn't seem to show anything about cell borders in the tables segment, and the example pages in the book all appear to have borders around every cell.
What do I need to change in order to give the cells themselves borders?