Featured Tutorials

flash,swf,external,swf file,position,swf position,setting position,loadmovie,load movie,levels,movieclip Set position of external SWF file in Flash

Set position of external SWF file in Flash

A few tips for using levels in flash when loading swf files, and how to set the position o..

Gun, Shot, text, effect, flash Gun Shot text effect

Gun Shot text effect

This Flash tutorial will teach you how to create a gun shot text effect. The results give ..

graphics design,business cards,business card design,business card ideas,how to design, business card sizes,layouts Ideas for Business Card Layouts

Ideas for Business Card Layouts

Heres a few ideas for those struggling to come up with professional business card designs,..

flash,whiteboard,sketchpad,flash paint,ms paint,flash sketchpad,flash whiteboard,flash drawing,drawing effect Create your own Whiteboard / Sketchpad in Flash

Create your own Whiteboard / Sketchpad in Flash

Here's a very useful tutorial about how to create an ms paint style application within the..

3d stars,vector stars.star artwork,stars in photoshop,3d star artwork,star illustration,star background,star effect,3d vector,3d backgrounds 3D Vector Stars Illusion using Colour Techniques

3D Vector Stars Illusion using Colour Techniques

This simple Photoshop tutorial will show you how to create this amazing 3D stars effect si..

Featured Videos

A very cool tutorial on one of Photoshop CS3's fancy new tools, t..

A great example of how the many Photoshop tools can be used to im..

Heres a look into one of microsofts fancy new software ventures t..

Heres a video that demonstrates some of the many cool features wh..

Google released the beta version of their new web browser softwar..

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