Your Guide to Professional
Web Site Design and Development

• HTML Tips
• HTML Codes
• Web Development
• Web Design Tips
• JavaScript Codes
• 216 Web Safe Colors
• CSS Tutorial
• JavaScript Tutorial
•
ASCII Character Codes

Offering a guide to professional web site design, web page design and web design guidelines

| Web Site Development | HTML Codes | HTML Tips | Web Design Tips | Javascript Snippets | 216 Safe Colors | Symbols | CSS Tutorial | JavaScript Tutorial |

Using CSS to Highlight Web Page Links on Mouse Over


You can use CSS (Cascading Style Sheets) Style Tags to highlight web page links when you place your mouse over the link.

If you would like to highlight the background of your links when your mouse is placed over it, place the following code between your <HEAD> and </HEAD> tags.

<STYLE TYPE="text/css">
<!--
a:hover{background-color:#7FBBF3;}
-->
</STYLE>

Edit the color code, indicated in bold, to suit your needs.

This is just one small example of how you can use CSS (Cascading Style Sheets) Style Tags within your web page. For additional information on CSS, visit the CSS Tutorial section.

 More Web Design Tips