Hello, I am trying to find default styles, i.e. default styles for FireFox or proposed by specification. I have found something at http://www.w3.org/TR/CSS21/sample.html, but there is nothing for "A" tag and it is by default text-decoration:underline. Does someone know for 'better' page/file with default CSS files? Thanks.
For Firefox, look in the directory where Firefox resides and find the "res" directory. In there you will find two or three .css files. These are the Firefox default styles. In my Debian Gnu/Linux machine, the location is: /usr/share/xulrunner-1.9/res/ In Windows (Vista and Win98se here) look in c:\program files\mozilla firefox\res\ edit: Did you miss these? cheers, gary
Thanks. >> Did you miss these? No, I didn't miss, but I didn't know that something like <html> <head> </head> <body <a href="#">test</a> </body> </html> Code (markup): will actually be affected by that CSS. It seems like specifying a:link is same as a. I didn't know it before.
It's not actually. A link is a subset of a, where a has the href attribute. <a href="#">...</a> Code (markup): cheers, gary