First, why on earth would you use a table for a simple block of text ? 🙂
You can just use a simple div with inline style
<div style=”padding:20px;background-color:rgb(140,140,140);”>Your text</div>
If you want extra space between the paragraph, add it in their inline style
<div style=”padding:20px;background-color:rgb(140,140,140);”>
<p>Your text</p>
<p style=”margin-top:20px;”>Your text</p>
<p style=”margin-top:20px;”>Your text</p>
</div>
but if you insist, on table, add the padding to the inline style attribute of your table.
<table style=”width:100%;padding:20px;background-color:rgb(140,140,140);” ……….>