| Home | Horizontal rollovers | drop down redirect script | form validation |
<html>
<head>
<title>Horizontal Rollovers with CSS2 and Tables</title>
<style type="text/css">
<!--
.links3 {
font-size:.9em;
font-family:arial,helvetica,sans-serif;
}
.links3 a {
display:block;
width:auto; /* fixes width inconsistencies between NS and IE */
border:1px solid black;
border-right-width:0px; /* eliminate 2px borders */
color:#00F;
padding:5px;
text-decoration:none;
font-weight:bold;
background-color:white;
}
.links3 a:hover {
background-color:#00f;
color:white;
}
body { background-color: #FFFFFF}
-->
</style>
<body>
<table width="100%" cellpadding="0" cellspacing="0">
<tr class="links3">
<td width="25%"><a href="../index.asp">Home</a></td>
<td width="25%"><a href="horizontalcssrollovers2.asp">Horizontal
rollovers </a></td>
<td width="25%"><a href="ddredirect.htm">drop
down redirect script</a></td>
<td width="25%"><a style="border-right-width:1px;"
href="formvalid.asp">form validation</a></td>
</tr>
</table>
</body>
</html>