Usually HTML element attribute values are marked with a quotation mark, like


<input type="hidden" value="test" />

Sometimes, however, you see code like


<input type='hidden' value='test' />

Is it valid HTML and can it cause any problems? What about mixing the two, like


<input type='hidden' value="test">

?

link|improve this question

Thanks, the linked question contains another question with the answer. According to the specification, both are valid: w3.org/TR/html4/intro/sgmltut.html#h-3.2.2 – simon Aug 30 '11 at 9:35
feedback

1 Answer

up vote 0 down vote accepted

The linked question from James Allardice's comment to my original question lead me to the answer: yes, apostrophes are valid containers for HTML element attribute values. Specification: http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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