tags:

views:

47

answers:

1

It seems that padding style applying to <td /> doesn't work on IE7 in my computer, but is okay on FireFox3.5.

Is this a correct behavior? Or I get wrong.

Thanks.

+1  A: 

<td /> is not accepted well by browsers. I've run into various problems with this approach.

Make it <td></td>.

Developer Art