Is there a way, using CSS, to show borders in a table between columns only (not on the outer edges)?
There's no easy way of doing this, other than doing something like class="lastCell" on the last td in each tr, and then setting your css up like this:
#table td { border-right: 5px solid red } .lastCell { border-right: none; }