In HTML5, as now the cellpadding is not allowed in the table tag, is there a way I can use the style attribute in table tag only and define the cellpadding.
I don't want to use style css like this:
<style>.honey th,.honey td {
border: 1px solid black;
padding: 10px;
}</style>
and don't want to add style attribute in each th and td:
<td style="padding:10px">January</td><td style="padding:10px">$100</td>