I need to create a web page that displays two different styles of hyperlinks. I'd imagine one would use CSS to do this. I can create one style of a hyperlink by doing the following:
a { text-decoration: none; color="#000000" }
a.l { color: #000000; text-decoration: none }
a.l2 { color: #000000; text-decoration: none }
a.m { color: #000000; text-decoration: none }
a:hover { color: #000000 }
but this lets me use one style for the whole page. How could I create a class that allows me to use two(or more) different styles?
------------------
- jeste®
How could tomorrow ever follow today?




Reply With Quote