bottom_s.aspx font size:
<html>
<head>
<title>Abakada CSS Demo: bottom Property with Transition</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style>
   #img { transition: bottom 2s }
</style>
</head>

<body>
<div class="header"><h2>Abakada CSS Demo: <b>bottom</b> Property with <b>Transition</b></h2></div>
<hr size=1 width=92%>

<div align="center">

   <p id="msg">This example uses <i>inline event handlers</i> to dynamically change an object's CSS <b>bottom</b> property<br>
      in response to mouse events. 
      Click to move the bottom edge position. Double-click to reset.</p>

   <img id="img" src="../shared/images/samp09.jpg"
      style="position: relative; bottom: 0px"
      onclick="this.style.bottom='-200px'"
      ondblclick="this.style.bottom='0px'">

</div>

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

</body>
</html>