I would like to have space around the content, inside the border of the element.
http://www.w3schools.com/CSS/css_padding.asp
I have used cellpadding which is working pretty good in FF but not in IE. The version of ie that i am using is 7.0.5730.13
I have tried a simple table
<table style="padding:100px" border="1">
<tr><td >123</td></tr>
<tr><td>456</td></tr>
<tr><td> 678</td></tr>
<tr><td>kzuk</td></tr>
</table>
But the output does not have space at all.. If i am using padding tag at <td>.
It is working good.
As padding is not working in IE. I used an alternate method.
I have created two dummy rows one on top another on bottom and dummy columns one on right another left and styled them with padding. It is working. Please let me if there is any better method to have space around the content...