html cellpadding the left side of a cell

前端 未结 6 569
遇见更好的自我
遇见更好的自我 2021-02-05 02:31

I want to pad my text in a cells on the right side with additional space .

I don\'t use css style sheets .

this is my code

6条回答
  •  遥遥无期
    2021-02-05 03:21

    I recently had to do this to create half decent looking emails for an email client that did not support the CSS necessary. For an HTML only solution I use a wrapping table to provide the padding.

This cells padding matches what you want.
  • 5px Left, Top, Bottom padding
  • 10px on the right
You can then put your table inside this cell with no spacing or padding set.

As of 2017 you would only do this for old email client support, it's pretty overkill.

提交回复
热议问题