crazyfish
12-22-2004, 06:28 PM
I want to do two things but the padding isn't right. I want to have a 10px pad the whole cell (top, bottom, left and right) then I want to do it just the left and right in other cell, what is the proper code to do that?
samdax
12-22-2004, 06:43 PM
You need to use two custom class
CSS
one for the first cell
.style-one { padding: 10px }
one for other cell
.style-two { padding-left: 10px; padding-right: 10px }
HTML
for the first cell
<td class="style-one">
second
<td class="style-two">
crazyfish
12-22-2004, 06:47 PM
thanks I will give that a try
ryno267
12-22-2004, 10:59 PM
tables... *smacks head on table*