overflow

The overflow attribute sets what to do when an element's content is too big to fit in its block formatting context.

This attribute has the same parameter values and meaning as the CSS overflow property, however, the following additional points apply:

Note: Although the initial value for overflow is auto, it is overwritten in the User Agent style sheet for the <svg> element when it is not the root element of a stand-alone document, the <pattern> element, and the <marker> element to be hidden by default.

Note: As a presentation attribute, overflow also has a CSS property counterpart: overflow. When both are specified, the CSS property takes priority.

You can use this attribute with the following SVG elements:

Example

html
<svg viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg" overflow="auto">
  <text y="20">
    This text is wider than the SVG, so there should be a scrollbar shown.
  </text>
</svg>

Usage notes

Valuevisible | hidden | scroll | auto
Default valuevisible
AnimatableYes

For a description of the values, please see the CSS overflow property.

Specifications

See also