Possible Duplicate:
HTML single quotes a “problem”?

As in,

<span class='classname'>Hi</span>

instead of

<span class="classname">Hi</span>

Works, but is it kosher? Not too familiar with HTML/CSS-- who defines what's okay? W3C?

link|improve this question

73% accept rate
2  
what's kosher? also you may consider accepting answers to your previous questions. – Eric Fortis Jan 2 '11 at 4:19
Ought I delete this question since there are dups? – Tim Jan 2 '11 at 4:26
In general, there's no need to delete questions. Trusted members of the Stack Overflow community will close or migrate it as necessary. Leaving questions accessible helps others who may be searching for a similar answer to find a solution. – Cody Gray Jan 2 '11 at 4:42
feedback

closed as exact duplicate by PleaseStand, John Kugelman, Cody Gray, Adam Backstrom, Rubens Farias Jan 2 '11 at 4:34

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

up vote 1 down vote accepted

Edit: See this duplicate.

W3C says this:

By default, SGML requires that all attribute values be delimited using either double quotation marks (ASCII decimal 34) or single quotation marks (ASCII decimal 39). Single quote marks can be included within the attribute value when the value is delimited by double quote marks, and vice versa.

link|improve this answer
feedback

Single quotes are and have always been completely kosher, according to the W3 specification. It's a markup/code style choice, nothing more.

link|improve this answer
feedback

Yes, the W3C publishes HTML standards.

They also provide a validator at http://validator.w3.org/

the validator is ok with both for XHTML 1.0 Strict.

There is several HTML standards, so whether it’s "acceptable" entirely depends on which you're using. Furthermore collaborative projects may have a coding style which defines to use one or the other. Using " is de-facto standard, even if the HTML standard may allow ' as well.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.