弃用
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the 兼容性表格 at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

<shape> CSS data type defines the specific form (shape) of a region. The region represents the part of an element to which the clip property applies.

注意: <shape> and rect() work in conjunction with clip , which has been deprecated in favor of clip-path . When possible, use clip-path <basic-shape> data type instead.

句法

<shape> data type is specified using the rect() function, which produces a region in the form of a rectangle.

rect()

rect(top, right, bottom, left)
					

rect.png

top
<length> representing the offset for the top of the rectangle relative to the top border of the element's box.
right
<length> representing the offset for the right of the rectangle relative to the left border of the element's box.
bottom
<length> representing the offset for the bottom of the rectangle relative to the top border of the element's box.
left
<length> representing the offset for the left of the rectangle relative to the left border of the element's box.

插值

When animated, values of the <shape> data type are interpolated over their top , right , bottom ,和 left components, each treated as a real, floating-point number. The speed of the interpolation is determined by the timing function associated with the animation.

范例

Example demonstrating correct use of the rect() function

img.clip04 {
  clip: rect(10px, 20px, 20px, 10px);
}
						

规范

规范 状态 注释
CSS Level 2 (Revision 1)
The definition of '<shape>' in that specification.
推荐 Defines with the clip 特性。

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
<shape> 弃用 Chrome 完整支持 1 Edge 完整支持 12 Firefox 完整支持 1 IE 完整支持 5.5 Opera 完整支持 9.5 Safari 完整支持 1.3 WebView Android 完整支持 37 Chrome Android 完整支持 18 Firefox Android 完整支持 4 Opera Android 完整支持 14 Safari iOS 完整支持 1 Samsung Internet Android 完整支持 1.0
rect() 弃用 Chrome 完整支持 1 Edge 完整支持 12 Firefox 完整支持 1 IE 完整支持 5.5 注意事项
完整支持 5.5 注意事项
注意事项 For Internet Explorer versions 5.5 through 7, the rect() function uses spaces (instead of commas) to separate parameters. For Internet Explorer 8 and later versions, only the standard comma-separated syntax is supported.
Opera 完整支持 9.5 Safari 完整支持 1.3 WebView Android 完整支持 37 Chrome Android 完整支持 18 Firefox Android 完整支持 4 Opera Android 完整支持 14 Safari iOS 完整支持 1 Samsung Internet Android 完整支持 1.0

图例

完整支持

完整支持

弃用。不要用于新网站。

弃用。不要用于新网站。

见实现注意事项。

见实现注意事项。

另请参阅

元数据

  • 最后修改: