<html>
<head>
<title>Abakada CSS Demo: paddingRight Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: paddingRight Property</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to dynamically set an object's <b>paddingRight</b> style property.</h5>
<p id="msg">Move the mouse over any image to expand its spacing at the right. Move the mouse out to reset. </p>
<table>
<tr>
<td onmouseover="this.style.paddingRight='1cm'"
onmouseout="this.style.paddingRight=''">
<img src="../shared/images/earth.gif"
height=100 width=100 border=0 alt="Mother"></td>
<td onmouseover="this.style.paddingRight='1cm'"
onmouseout="this.style.paddingRight=''">
<img src="../shared/images/jupiter.gif"
height=100 width=100 border=0 alt="Jupiter"></td>
<td onmouseover="this.style.paddingRight='1cm'"
onmouseout="this.style.paddingRight=''">
<img src="../shared/images/uranus.gif"
height=100 width=100 border=0 alt="Uranus"></td></tr>
</table>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>