Hi I am trying to have different color links on the same page. I want some links to be blue and some links to be black. I am new to html and CSS so thank you in advance!
-Spencer
|
|
|
CSS:
HTML:
Demo: http://cssdesk.com/qukaq |
|||||||||
|
|
just set a class name to ur hyper links for Example CSS
Markup :
A simple Demo |
|||
|
|
You can give the links different classes like:
And write CSS rules like:
|
|||
|
As seen above, you simply input style="color: ###" in the a href to set it to whatever you want if you wish to set each individual link. :) For more general, use
and in your CSS file state
|
|||
|
|
|
You need some way to specify which links should have which style, and there are seveal to choose from. Some examples: All links that is within the element with
All links that is within any element with
All links that themselves have
All links that are within a
You can also specify style directly for a specific link.
|
|||
|
|