ziploc1010
Programmer
I'd like to add some css to my anchor tag. To do this, I would:
<style type="text/css">
A {
font: 13pt/15pt "Arial";
}
</style>
But what if I wanted a special anchor tag? I don't want to change my style for every anchor tag. So is it possible to create a new class that inherents all of the properties of the regular anchor tag.
I want to do something like this:
<style type="text/css">
As {
*inherent all of A's properties*
font: 13pt/15pt "Arial";
}
</style>
Then instead of doing <A ....
I can do <As ...
Thanks in advance,
Matthew