A Menu Rollover Effect with CSS

#list-menu a:link, #list-menu a:active, #list-menu a:visited { color: #000000; } #list-menu a:hover { border: 1px solid #000000; background: #333333; color: #ffffff; }   <ul> <li><a href=”#”>Home</a></li> <li><a href=”#”>Products</a></li> <li><a href=”#”>Services</a></li> <li><a href=”#”>Solutions</a></li> <li><a href=”#”>Support</a></li> <li><a href=”#”>Contact</a></li> </ul>

CSS Alternate Colors Table Loop

CSS .rol_1{ background-color:#FFFFFF} .rol_2{ background-color:#CCCCCC} .rol_Hover{ background-color:#FFFF99} PHP Script On <TR> <?php do { ?> <tr class=”<?php echo ($ac_sw1++%2==0)?”rol_1″:”rol_2″; ?>” onmouseover=”this.oldClassName = this.className; this.className=’rol_Hover’;” onmouseout=”this.className = this.oldClassName;”> <td>loop</td> </tr> <?php } while ($row_travel_schedule = mysql_fetch_assoc($schedule)); ?>

25 Rounded Corners Techniques with CSS

http://www.cssjuice.com/25-rounded-corners-techniques-with-css/   Rounded corners is one of the most popular and frequently requested CSS techniques even the father of internet Google also launch the rounded corners style markup with her Google Adsenseand let users to custom their ads recently. Actually, there are a lot of methods and techniques to create rounded corners with Cascading Stylesheets. Some are quite …

How to convert HTML tables to CSS

  How to convert HTML tables to CSS After explaining in our previous article why it is generally a good idea to get rid of HTML tables it is time to give some practical advise on how to actually convert the tables to tableless HTML and CSS code. In this article we describe a couple of conversion …