<desc> - SVG | MDN
Usage context
| Categories | Descriptive element |
|---|---|
| Permitted content | Any elements or character data |
Attributes
This element only includes global attributes.
DOM Interface
This element implements the SVGDescElement interface.
Example
html,
body,
svg {
height: 100%;
}
html
<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
<circle cx="5" cy="5" r="4">
<desc>
I'm a circle and that description is here to demonstrate how I can be
described, but is it really necessary to describe a simple circle like me?
</desc>
</circle>
</svg>
Specifications
| Specification |
|---|
| Scalable Vector Graphics (SVG) 2 # DescriptionAndTitleElements |