overflow - SVG: Scalable Vector Graphics 编辑

The overflow attribute sets what to do when an element's content is too big to fit in its block formatting context. This feature is not widely implemented yet. It has the same parameter values and meaning as the css overflow property, however, the following additional points apply:

  • If it has a value of visible, the attribute has no effect (i.e., a clipping rectangle is not created).
  • If the overflow property has the value hidden or scroll, a clip of the exact size of the SVG viewport is applied.
  • When scroll is specified on an <svg> element, a scrollbar or panner is normally shown for the SVG viewport whether or not any of its content is clipped.
  • Within SVG content, the value auto implies that all rendered content for child elements must be visible, either through a scrolling mechanism, or by rendering with no clip.
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 can be used as a CSS property. See the css opacity property for more information.

As a presentation attribute, it can be applied to any element but it has effect only on the following eight elements: <foreignObject>, <iframe>, <image>, <marker>, <pattern>, <symbol>, <svg>, and <text>

html, body, svg {
  height: 100%;
}
<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

SpecificationStatusComment
CSS Level 2 (Revision 1)
The definition of 'overflow' in that specification.
RecommendationDefinition in CSS
Scalable Vector Graphics (SVG) 2
The definition of 'overflow' in that specification.
Candidate RecommendationSimplifies the definition and outlines the values within the user agent stylesheet.
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'overflow' in that specification.
RecommendationInitial definition

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:61 次

字数:5571

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文