<html>
<head>
<title>Abakada CSS Demo: visibility Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style type="text/css">
<!--
.vis { visibility: visible }
.hid { visibility: hidden }
-->
</style>
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: visibility Attribute</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses calls to an embedded stylesheet to dynamically set an element's <b>visibility</b>.</h5>
<p id="msg" onmouseover="theImg.className='hid'"
onmouseout="theImg.className='vis'">
Move the mouse over and out of this text to hide and show the image.
</p>
<img id="theImg" src="../shared/images/samp14.jpg"
height=125 width=125 border=0 alt="">
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>