Featured Tutorials

photoshop tutorials, gradient overlay, text effects,photoshop text effects,font effects,text reflection,reflections,custom text,blending options,text effects in photoshop Jazz up text with Gradient Overlay

Jazz up text with Gradient Overlay

Some simple Photoshop techniques for giving your text and little oooomph!..

web design guide, how to, website design, tips, advice,web design tutorial,design tutorial,websites,learn html,learn css,css tips,html tips,seo tips Web Development Guide

Web Development Guide

A large selection of expert tips and advice to help you design and market the perfect web ..

bubbles,animation,flash, bubbles animation,bubbles in flash,bubbles guide,flash animation,flash tutorial,how to animate bubbles, how to draw bubbles,bubbles,flash bubbles Animate Bubbles in Flash with Motion Guides

Animate Bubbles in Flash with Motion Guides

This simple tutorial will teach you how to draw and animate bubbles rising to the surface ..

flash paint,painting in flash,paint program,paint program flash,flash draw lines,draw lines,drawing lines in flash,ms paint in flash,whiteboard,flash whiteboard Grafitti Style Paint Program in Flash

Grafitti Style Paint Program in Flash

This is a very cool tutorial for creating a simple paint with the mouse pointer program in..

web design articles, css layouts, internet explorer, bug fixes,css fixes,transparent flash,flash lightbox,css help,css in IE,css problem ie,ie hacks,css hacks Internet Explorer CSS bug fixes

Internet Explorer CSS bug fixes

Fixes for some of the most common CSS bugs in internet Explorer..

Featured Videos

Yes its here it's not practical, and it's not easy to use! This s..

This detailed video explains how to use the curves feature in pho..

Some amazing footage of how Photoshop can be used to great effect..

This video will teach you how to create a button in flash and how..

I often use this text effect for intros or as a button roll over ..

Learn CSS: Link Classes

Basic Links

When you create a link in CSS it can be just a standard link with a few basic properties simular to standard HTML links, heres an example:

As a class in your stylesheet document

a {font-family:Verdana; font-size: 12pt; color: black; font-weight: bold;}

or directly within an <a> tag

<a style="font-family:Verdana; font-size: 12pt; color: black; font-weight: bold;">Link Example</a>

 

Link Properties

Here a list of the additional properties that you can apply to your links:

color: black;
color: #000000;
font-weight: bold;
font-weight: normal;
font-size: 10pt;
font-size: 10px;
text-decoration: none;
text-decoration: underline;
text-decoration: overline;
text-decoration: line-through;

 

Dynamic Links (Pseudo-classes)

If you want your links to do more you will need to add classes to them within your stylesheet document, below are some example of links that use different classes:

a:link {font-family: Verdana; font-size: 12pt; color: black;}
a:active {font-family: Verdana; font-size: 12pt; color: black;}
a:visited {font-family: Verdana; font-size: 12pt; color: grey;}
a:hover {font-family: Verdana; font-size: 12pt; color: red; font-weight: bold;}

Link example 1

This example has not been given any class before the ":link :acive :visited or :hover" this means that these settings will effect all <a> tag links that havent been given a class a bit like a universal setting.

 

a.example12link {font-family: Verdana; font-size: 12pt; color: black; text-decoration: none;}
a.example2:active {font-family: Verdana; font-size: 12pt; color: black; text-decoration: none;}
a.example2:visited {font-family: Verdana; font-size: 12pt; color: grey; text-decoration: none;}
a.example2:hover {font-family: Verdana; font-size: 12pt; color: grey; text-decoration: underline;}

Link example 2

This example has been given a class as you can see above with "a.example2:link". All you need to add to your <a> tag is:

<a class="example2">Link example 2</a>

 

More Web Design...

Other Content...

 Subscribe to our feed

Send to a friend