I have style definitions that look like this:
I have 20 text styles, and for all of them I declare like this, resulting in a lengthy style sheet.
a:link and a:visited should always be {text-decoration: none} for me, and a:hover always {text-decoration: underline}.
If I could declare these in just one place, valid for all styles, I would save huge bytes. Is that possible?
Thank you very much for your time!
Code:
.a10b, .a10b a:link, .a10b a:visited, .a10b a:hover { font: 10px Arial; color: #000000; text-decoration: none; } .a10b a:hover {text-decoration: underline}
a:link and a:visited should always be {text-decoration: none} for me, and a:hover always {text-decoration: underline}.
If I could declare these in just one place, valid for all styles, I would save huge bytes. Is that possible?
Thank you very much for your time!
Comment