simple css trick - is it possible?

smart15

New Member
i am wondering whether this is possible: i have an \[code\]id\[/code\] defined in css in this form. \[code\]#close{ font-size:11px; text-decoration: underline;}#close:hover{ cursor: pointer;}\[/code\]but here i have to repeat the definition of this id just to add \[code\]hover\[/code\] event. is there any possibility to do something like this? \[code\]#close{ font-size:11px; text-decoration: underline;}:hover{cursor: pointer;}\[/code\]this would save some extra typing..
 
Back
Top