I want to add a 1 pixel border to the right of a table called TD, thus I did the following:
table td {
border-right:1px solid #000;
}
It functions perfectly, but there is a height issue because the border takes up the entire TD height.
Is it possible to modify the border's height?