Back to Content

ry

files/en-us/web/svg/reference/attribute/ry/index.md

latest3.3 KB
Original Source

The ry attribute defines a radius on the y-axis.

You can use this attribute with the following SVG elements:

  • {{SVGElement("ellipse")}}
  • {{SVGElement("rect")}}

Example

css
html,
body,
svg {
  height: 100%;
}
html
<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg">
  <ellipse cx="50" cy="50" ry="0" rx="25" />
  <ellipse cx="150" cy="50" ry="25" rx="25" />
  <ellipse cx="250" cy="50" ry="50" rx="25" />

  <rect x="20" y="120" width="60" height="60" ry="0" rx="15" />
  <rect x="120" y="120" width="60" height="60" ry="15" rx="15" />
  <rect x="220" y="120" width="60" height="60" ry="150" rx="15" />
</svg>

{{EmbedLiveSample("Example", '100%', 200)}}

ellipse

For {{SVGElement('ellipse')}}, ry defines the y-radius of the shape. With a value lower or equal to zero the ellipse won't be drawn at all.

<table class="properties"> <tbody> <tr> <th scope="row">Value</th> <td> <strong ><a href="/en-US/docs/Web/SVG/Guides/Content_type#length" >&#x3C;length></a ></strong > | <strong ><a href="/en-US/docs/Web/SVG/Guides/Content_type#percentage" >&#x3C;percentage></a ></strong > | <code>auto</code> </td> </tr> <tr> <th scope="row">Default value</th> <td><code>auto</code></td> </tr> <tr> <th scope="row">Animatable</th> <td>Yes</td> </tr> </tbody> </table>

[!NOTE] The y-radius of the <ellipse> can also be defined with the {{cssxref("ry")}} geometry property. If set in CSS, the ry property value overrides the ry attribute value.

rect

For {{SVGElement('rect')}}, ry defines the y-axis radius of the ellipse used to round off the corners of the rectangle.

The way the value of the ry attribute is interpreted depend on both the {{SVGAttr("rx")}} attribute and the width of the rectangle:

  • If a properly specified value is provided for ry but not for {{SVGAttr("rx")}} (or the opposite), then the browser will consider the missing value equal to the defined one.
  • If neither ry nor {{SVGAttr("rx")}} has a properly specified value, then the browser will draw a rectangle with square corners.
  • If ry is greater than half of the width of the rectangle, then the browser will consider the value for ry as half of the width of the rectangle.
<table class="properties"> <tbody> <tr> <th scope="row">Value</th> <td> <strong ><a href="/en-US/docs/Web/SVG/Guides/Content_type#length" >&#x3C;length></a ></strong > | <strong ><a href="/en-US/docs/Web/SVG/Guides/Content_type#percentage" >&#x3C;percentage></a ></strong > | <code>auto</code> </td> </tr> <tr> <th scope="row">Default value</th> <td><code>auto</code></td> </tr> <tr> <th scope="row">Animatable</th> <td>Yes</td> </tr> </tbody> </table>

[!NOTE] The vertical curve of the corners of the <rect> can also be defined with the {{cssxref("ry")}} geometry property. If set in CSS, the ry property value overrides the ry attribute value.

Specifications

{{Specifications}}

See also

  • CSS {{cssxref("ry")}} property