<feBlend>
<feColorMatrix>
<feComponentTransfer>
<feComposite>
<feConvolveMatrix>
<feDiffuseLighting>
<feDisplacementMap>
<feDistantLight>
<feFlood>
<feFuncA>
<feFuncB>
<feFuncG>
<feFuncR>
<feGaussianBlur>
<feImage>
<feMerge>
<feMergeNode>
<feMorphology>
<feOffset>
<fePointLight>
<feSpecularLighting>
<feSpotLight>
<feTile>
<feTurbulence>
<filter>
<font>
<font-face>
<font-face-format>
<font-face-name>
<font-face-src>
<font-face-uri>
<foreignObject>
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
.
This attribute has the same parameter values and meaning as the
css overflow property
, however, the following additional points apply:
visible
, the attribute has no effect (i.e., a clipping rectangle is not created).
overflow
property has the value
hidden
or
scroll
, a clip of the exact size of the SVG viewport is applied.
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.
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.
注意:
As a presentation attribute,
overflow
can be used as a CSS property. See the
css opacity
property for more information.
You can use this attribute with the following SVG elements:
<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>
| 值 |
visible
|
hidden
|
scroll
|
auto
|
|---|---|
| 默认值 |
visible
|
| Animatable | Yes |
For a description of the values, please see the
css overflow
特性。
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Level 2 (Revision 1)
The definition of 'overflow' in that specification. |
推荐 | Definition in CSS |
|
Scalable Vector Graphics (SVG) 2
The definition of 'overflow' in that specification. |
候选推荐 | Simplifies 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. |
推荐 | 初始定义 |
BCD tables only load in the browser
最后修改: , 由 MDN 贡献者