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