Tagged Questions
1
vote
4answers
253 views
Is it acceptable to use single quotes around values in HTML attributes? [closed]
Possible Duplicate:
HTML single quotes a “problem”?
As in,
<span class='classname'>Hi</span>
instead of
<span class="classname">Hi</span>
Works, ...