--- title: version slug: Web/SVG/Attribute/version translation_of: Web/SVG/Attribute/version ---
{{SVGRef}}{{deprecated_header("SVG 2")}}

The version attribute is used to indicate what specification a SVG document conforms to. It is only allowed on the root {{SVGElement("svg")}} element. It is purely advisory and has no influence on rendering or processing.

While it is specified to accept any number, the only two valid choices are currently 1.0 and 1.1.

<svg version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
  <rect x="10" y="10" width="80" height="80"/>
</svg>

Usage notes

Value <number>
Default value None
Animatable No

Specifications

Specification Status Comment
{{SpecName("SVG1.1", "struct.html#SVGElementVersionAttribute", "version")}} {{Spec2("SVG1.1")}} Initial definition

Compatibilidade com navegadores

{{Compat("svg.elements.svg.version")}}