Hello, what I want to do seems to should be simple (not sure, I am writing my first style sheet). I want change the properties of all links, but protect a few. I have tried to use the following:
a:hover { color: blue }
a .protected:hover { color: white }
I want all links to be blue, expect those in protected class. The above example turns all links blue. I could create two unique classes (not use the 'a') but I don't want to protect the vast majority of my links. If a guru
doesn't have the answer, I might just write it in locally
since the protected links are in a templete.
Thanks a bunch.-Luke
a:hover { color: blue }
a .protected:hover { color: white }
I want all links to be blue, expect those in protected class. The above example turns all links blue. I could create two unique classes (not use the 'a') but I don't want to protect the vast majority of my links. If a guru


Thanks a bunch.-Luke
Comment