padding_h.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: padding Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">

<style type="text/css">
<!--
   td { background-color: whitesmoke; padding: 3pt }
   .padded { padding: 15pt }
-->
</style>
</head>

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

<div class="header"><h2>Abakada CSS Demo: padding Attribute</h2></div>
<hr size=1 width=92%>

<center>

<h5>This example uses calls to an embedded stylesheet to dynamically set the space between an element's content and its border.</h5>

<p id="msg">The image is loaded in a table cell with <b>padding</b> initially set in a stylesheet. Move the mouse over the image to apply a style class that expands its padding. Move the mouse out to reset. </p>

<table>
<tr>
   <td onmouseover="this.className='padded'" 
      onmouseout="this.className=''">
         <img src="../shared/images/filtwiz.jpg" 
            height=125 width=125 border=0 alt="">
   </td>
</tr>
</table>

</center>

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

</body>
</html>