cellPadding.aspx font size:
<html>
<head>
<title>Abakada HTML Samples: cellPadding Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<script language="JavaScript">
<!--
function setPad ( obj, pad ) {
   el = document.getElementById ( obj );
   if ( el.cellPadding != pad )
      el.cellPadding = pad;
}
//-->
</script>
</head>

<body>
<!-- #include virtual="~/shared/top.inc" -->

<div class="header"><h2>Abakada HTML Demo: cellPadding Property</h2></div>
<hr size=1 width=92%>

<div align="center">
<h5><b>cellPadding</b> refers to the space between a table cell's content and its borders.</h5>
<table id="theTable" border cellpadding=10>
<tr>
   <th>Header 1</td>
   <th>Header 2</th>
   <th>Header 3</th></tr>
<tr>
   <td>Cell 1</td>
   <td>Cell 2</td>
   <td>Cell 3</td></tr>
</table>
<br>
<button onclick="setPad ( 'theTable',15 )">More</button>
<button onclick="setPad ( 'theTable',10 )">Reset</button>
<button onclick="setPad ( 'theTable',5 )">Less</button></div>

<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->

</body>
</html>