Monday, February 18, 2013

Changing Table Background Colors on Mouseover

If you're looking for a great way to spice up your HTML tables, this HTML mouseover code may be just what you're looking for.

Place your mouse pointer over each of the HTML table cells below to view this HTML mouseover effect. The HTML table cells will change to a specified color when you place your pointer over the cells.

This HTML code will enable you to give your HTML tables a more professional look and feel, as it will greatly improve the presentation of your HTML table data.

However, when using this HTML code, please ensure that you only use light colors within your HTML table cells to ensure your text can be easily viewed.
Your Table Data
Your Table Data
Your Table Data

Code:
<TABLE BORDER="2" CELLPADDING="2" WIDTH="100%">
<TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
<TD>Your Table Data</TD>
</TR>
<TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
<TD>Your Table Data</TD>
</TR>
<TR onMouseover="this.bgColor='#EEEEEE'"onMouseout="this.bgColor='#FFFFFF'">
<TD>Your Table Data</TD>
</TR>
</TABLE>

Related Posts:

  • HTML5 - Drag and Drop Drag and drop is a part of the HTML5 standard. Drag and Drop Drag and drop is a very common feature. It is when you "grab" an object and drag… Read More
  • What is HTML5? HTML5 Introduction. HTML5 will be the new standard for HTML. The previous version of HTML, HTML 4.01, came in 1999. The web has changed a lot since then. HTML5 is still… Read More
  • Mozilla Firefox Browser The Firefox Browser Firefox is a free, open-source web browser from Mozilla. Firefox is one of the most popular internet browsers today. Firefox is… Read More
  • HTML5 Canvas The <canvas> element is used to draw graphics, on the fly, on a web page. Draw a red rectangle, a gradient rectangle, a multicolor rectangle, … Read More
  • HTML5 Inline SVG HTML5 has support for inline SVG. What is SVG? SVG stands for Scalable Vector Graphics SVG is used to define vector-based graphics for the Web S… Read More

0 comments:

Post a Comment