html cellpadding the left side of a cell

前端 未结 6 568
遇见更好的自我
遇见更好的自我 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:16

    Well, as suggested by Hellfire you can use td width or you could place an element in the td and adjust its width. We could not use

    CSS property Padding
    

    as in Microsoft Outlook padding does not work. So what I had to do is,

Content Content

With this you can adjust right and left spacing. For top and bottom spacing you could use td's height property. Like,

 
Content Content

This will increase bottom space.

Hope it will work for you guys. :)

提交回复
热议问题