CSS padding-right
Also see the full, alphabetical list of CSS properties
The CSS padding-right property is used to apply padding to the right side of an element.
CSS padding is kind of the CSS equivilent to CELLPADDING in HTML (however, CSS padding is more powerful - it can be applied to any element, not just table cells, and as you can see here, a different padding value can be applied to any side you wish).
To apply the CSS padding property to table cells you need to apply padding at the cell level (i.e. you style the TD tag - not the TABLE tag).
Also see CSS padding, CSS padding-right, CSS padding-top and CSS padding-left
| Syntax: | padding-right: <value>; |
| Possible Values: |
|
| Initial Value: | 0 |
| Applies to: | All elements. |
| Inherited: | No |
| Media: | Visual |
| Example: |
td { padding-right:50px; }
|
| Try it yourself! |
|

