Which HTML tags can use the class attribute?
(In which standards — e.g. HTML/XHTML/HTML5 etc. — and in which browsers.)
For example, is the following legal or not?
<i class="myclass">text inside</i>
Thanks.
|
In HTML 4, the |
|||||||||||
|
|
In HTML5, the class attribute, along with the accesskey, contenteditable, contextmenu, dir, draggable, hidden, id, lang, spellcheck, style, tabindex and title attributes, is valid on all elements. See http://dev.w3.org/html5/spec/elements.html#global-attributes |
|||
|
|
Well I am pretty sure, that each and every tag may contain the class-attribute (correct me, if I am wrong). EDIT Okay Gumbo stated the tags, that a not allowed to use the class-attribute for good reason (see my comment at his answer). Thank you. |
|||
|
|
<em>text inside</em>rather than<i>as it is more semantically correct. – Adam Beizsley-Pycroft Jul 7 '10 at 11:56<i>tags are presentational and their use goes completely against the accepted wisdom of separating content from presentation. – Adam Beizsley-Pycroft Jul 8 '10 at 9:43<i>tags have meaning there: dev.w3.org/html5/spec/Overview.html#the-i-element – Paul D. Waite Jul 9 '10 at 10:25