HTML: The Markup Language

qquoted text # T

The q element represents phrasing content quoted from another source.

Permitted content #

Permitted attributes #

Descriptions for attributes specific to this element #

cite = URI
Specifies the address of the source of the quoted text.

Tag omission #

A q element must have both a start tag and an end tag.

Permitted parent elements #

any element that can contain phrasing elements

DOM interface #

Uses HTMLElement.

Typical default display properties #

q {
display: inline; }
q:before {
content: '"'; }
q:after {
content: '"'; }