onMouseover Hover Effect for Images and Text
<style type="text/css"> a.texthover { color: #35a; text-decoration: none; } a.texthover:hover { color: #f00; text-decoration: underline; } a.imghover img { border:1px solid #CCC;} a.imghover:hover img { border:1px solid #35a; } </style> <a href="http://www.zedwood.com" class="texthover" > Sample Text </a> <a href="http://www.zedwood.com" class="imghover" > <img src="/webdev/images/Modify.png" width="48" height="48" /> </a>
Sample Text
code snippets are licensed under Creative Commons CC-By-SA 3.0 (unless otherwise specified)