Tue, 2004-08-10 20:20
Just wondering - Is it possible/supported/wise to specify both a class AND an id for an element? For example, if you wanted it to follow the general guidelines of a class, but also had some unique rules for that element. Thanks in advance. - Jen[/code]
Tue, 2004-08-10 22:18
#1
Class and ID together?
<div id="banana" class="fruit"></div>
...inherits the basic styles of fruit and gets specific styles for a banana.
See what I mean?
Wed, 2004-08-11 09:30
#2
Class and ID together?
eric meyer has written an article about this, http://www.meyerweb.com/eric/thoughts/2004/07/18/competent-classing/
Wed, 2004-08-11 19:20
#3
Class and ID together?
Thank you!