Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Two Sets of Links with Different Colors
How can I have two sets of links with different colors?
✍: FYIcenter
You can suggest this presentation in a style sheet. First, specify colors for normal links, like this:
a:link {color: blue; background: white} a:visited {color: purple; background: white} a:active {color: red; background: white}
Next, identify the links that you want to have different colors. You can use the CLASS attribute in your HTML, like this:
<a class="example1" href="/[URL]">[link text]</a>
Then, in your style sheet, use a selector for links with this CLASS attribute, like this:
a.example1:link {color: yellow; background: black} a.example1:visited {color: white; background: black} a.example1:active {color: red; background: black}
2007-03-03, 5619👍, 0💬
Popular Posts:
What Happens If One Row Has Missing Columns? - XHTML 1.0 Tutorials - Understanding Tables and Table ...
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How do we assign page specific attributes ? Page attributes are specified using the @Page directive.
How comfortable are you with writing HTML documents entirely by hand? Everyone has a different prefe...