--- title: preserveAspectRatio slug: Web/SVG/Attribute/preserveAspectRatio translation_of: Web/SVG/Attribute/preserveAspectRatio ---
{{SVGRef}}

O atributo preserveAspectRatio indica como um elemento com uma viewBox, fornecendo uma determinada proporção deve se ajustar a uma viewport com uma proporção diferente.

Because the aspect ratio of an SVG image is defined by the {{SVGAttr('viewBox')}} attribute, if this attribute isn't set, the preserveAspectRatio attribute has no effect (with one exception, the {{SVGElement('image')}} element, as described below).

Example

<svg viewBox="-1 -1 162 92" xmlns="http://www.w3.org/2000/svg">
  <defs>
     <path id="smiley" d="M50,10 A40,40,1,1,1,50,90 A40,40,1,1,1,50,10 M30,40 Q36,35,42,40 M58,40 Q64,35,70,40 M30,60 Q50,75,70,60 Q50,75,30,60" />
  </defs>

  <!-- (width>height) meet -->
  <svg preserveAspectRatio="xMidYMid meet"  x="0"   y="0"  viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMinYMid meet"  x="25"  y="0"  viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMaxYMid meet"  x="50"  y="0"  viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>

  <!-- (width>height) slice -->
  <svg preserveAspectRatio="xMidYMin slice" x="0"   y="15" viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMidYMid slice" x="25"  y="15" viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMidYMax slice" x="50"  y="15" viewBox="0 0 100 100" width="20"  height="10"><use href="#smiley" /></svg>

  <!-- (width<height) meet -->
  <svg preserveAspectRatio="xMidYMin meet"  x="75"  y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMidYMid meet"  x="90"  y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMidYMax meet"  x="105" y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>

  <!-- (width<height) slice -->
  <svg preserveAspectRatio="xMinYMid slice" x="120" y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMidYMid slice" x="135" y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>
  <svg preserveAspectRatio="xMaxYMid slice" x="150" y="0"  viewBox="0 0 100 100" width="10"  height="25"><use href="#smiley" /></svg>

  <!-- none -->
  <svg preserveAspectRatio="none"           x="0"   y="30" viewBox="0 0 100 100" width="160" height="60"><use href="#smiley" /></svg>
</svg>

{{EmbedLiveSample('topExample', '100%', 200)}}

Syntax

preserveAspectRatio="<align> [<meetOrSlice>]"

Its value is made of one or two keywords: A required alignment value and an optional "meet or slice" reference as described below:

Alignment value
The alignment value indicates whether to force uniform scaling and, if so, the alignment method to use in case the aspect ratio of the {{ SVGAttr("viewBox") }} doesn't match the aspect ratio of the viewport. The alignment value must be one of the following keywords:
Meet or slice reference
The meet or slice reference is optional and, if provided, must be one of the following keywords:

Elements

Seven elements are using this attribute: {{SVGElement("svg")}}, {{SVGElement("symbol")}}, {{SVGElement("image")}}, {{SVGElement("feImage")}}, {{SVGElement("marker")}}, {{SVGElement("pattern")}}, and {{SVGElement("view")}}.

feImage

For {{SVGElement('feImage')}}, preserveAspectRatio defines how the referenced image should fit in the rectangle define by the <feImage> element.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

image

For {{SVGElement('image')}}, preserveAspectRatio defines how the referenced image should fit in the rectangle define by the <image> element.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

marker

For {{SVGElement('marker')}}, preserveAspectRatio indicates if a uniform scaling must be performed to fit the element viewport.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

pattern

For {{SVGElement('pattern')}}, preserveAspectRatio indicates if a uniform scaling must be performed to fit the element viewport.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

svg

For {{SVGElement('svg')}}, preserveAspectRatio indicates if a uniform scaling must be performed to fit the element viewport.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

symbol

For {{SVGElement('symbol')}}, preserveAspectRatio indicates if a uniform scaling must be performed to fit the element viewport.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

view

For {{SVGElement('view')}}, preserveAspectRatio indicates if a uniform scaling must be performed to fit the element viewport.

Value <align> <meetOrSlice>?
Default value xMidYMid meet
Animatable Yes

Specification

Specification Status Comment
{{SpecName("Filters 1.0", "#element-attrdef-feimage-preserveaspectratio", "preserveAspectRatio")}} {{Spec2('Filters 1.0')}}
{{SpecName("SVG2", "coords.html#PreserveAspectRatioAttribute", "preserveAspectRatio")}} {{Spec2("SVG2")}}
{{SpecName("SVG1.1", "coords.html#PreserveAspectRatioAttribute", "preserveAspectRatio")}} {{Spec2("SVG1.1")}} Initial definition