Search code examples
htmlxhtml-1.0-strictxhtml

Are single quotes valid in HTML/XHTML?


Are single quotes valid in HTML? And more specifically: XHTML strict.

<table width="100%">
<table width='100%'>

Solution

  • Yes, single quotes are valid.

    From the XML spec:

    [10]   AttValue  ::= '"' ([^<&"] | Reference)* '"'
                      |  "'" ([^<&'] | Reference)* "'"