H
Helen Liddell
Goal: 1.have white hyperlinks on a page that are only underlined when user
hovers. 2. have typical blue underlined links on other parts of the same
page.
Below is the code on my .css page I did, but when I link the style sheet to
my page, my link is underlined when you do not hover. Did I write the code
wrong? Also, even if I get past this problem of getting my white links to
work properly, how will front page know when to use the white links and when
to use the blue links?
<p>a:link {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>
<p>a:active {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>
<p>a:hover {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: underline;<br>
}</p>
<p>a:visited {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>
hovers. 2. have typical blue underlined links on other parts of the same
page.
Below is the code on my .css page I did, but when I link the style sheet to
my page, my link is underlined when you do not hover. Did I write the code
wrong? Also, even if I get past this problem of getting my white links to
work properly, how will front page know when to use the white links and when
to use the blue links?
<p>a:link {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>
<p>a:active {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>
<p>a:hover {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: underline;<br>
}</p>
<p>a:visited {<br>
font-family: Arial, Helvetica, sans-serif;<br>
font-size: 10px;<br>
font-style: normal;<br>
color: #FFFFFF;<br>
text-decoration: none;<br>
}</p>