Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

Why does the a:visited CSS style not change anything other than color or background color in Firefox 6? Setting text-decoration and text-transform do not work.

  • 2 svar
  • 4 har detta problem
  • 2 visningar
  • Senaste svar av disparprof

more options

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Visited Problem</title> <style type="text/css"> #footer a:link { color: white; background-color: orange; text-transform: uppercase; } #footer a:visited { color: red; background-color: black; text-transform: lowercase; text-decoration: none; } </style>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Visited Problem</title> <style type="text/css"> #footer a:link { color: white; background-color: orange; text-transform: uppercase; } #footer a:visited { color: red; background-color: black; text-transform: lowercase; text-decoration: none; } </style> </head> <body> <div id="footer"> <p><a href="http://www.usatoday.com">USA Today</a></p> </div> </style> </head> <body> <div id="footer"> <p><a href="http://www.usatoday.com">USA Today</a></p> </div>

Alla svar (2)

more options

Vald lösning

Ändrad av cor-el

more options

Mystery solved. Thanks.