// Simple CSS that will let you do away with clunky images forever! This script will create a perfect menu that highlights links when the mouse rolls over! The beauty of CSS is that this script is compact, lightweight and customizeable! This is a perfect example of the power of CSS.
DEMOwebscriptexpert.com<HTML CODE HERE>
1
2 <table border="0" width=175>
3 <tr>
4 <td width="100%" bgcolor="#E6E6E6"><span class="style7"><b>CSS MENU<b></span></td>
5 <tr>
6 <td width="100%"><span class="style5"><a href="http://www.webscriptexpert.com" class="selector">Web Script Expert</a></span></td>
7 </tr>
8 <tr>
9 <td width="100%"><span class="style5"><a href="http://www.webscriptexpert.com" class="selector">Actionscript</a></span></td>
10 </tr>
11 <tr>
12 <td width="100%"><span class="style5"><a href="http://www.webscriptexpert.com" class="selector">PHP CSS</a></span></td>
13 </tr>
14 <tr>
15 <td width="100%"><span class="style5"><a href="http://www.webscriptexpert.com" class="selector">Javascript</a></span></td>
16 </tr>
17 </table>
<CSS CODE HERE>
1
2 <style>
3 A.selector {
4 display: block;
5 width: 198px;
6 text-align: left;
7 text-decoration: none;
8 font-family:arial;
9 font-size:12px;
10 color:
11 BORDER: none;
12 border: solid 1px
13 }
14
15 A.selector:hover {
16 border: solid 1px
17 background-color:
18 }
19 .style5 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; }
20 .style7 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; }
21 </style>