clip 属性剪裁绝对定位元素。
注意:当一幅图像的尺寸大于包含它的元素时会发生什么呢?”clip” 属性允许规定一个元素的可见尺寸,这样此元素就会被修剪并显示为这个形状。
clip:shape|auto|inherit;
值 | 说明 (索引中有详细介绍) |
auto | 默认值。不应用任何剪裁。 |
shape | 设置元素的形状。唯一合法的形状值是:rect (top, right, bottom, left) |
inherit | 规定应该从父元素继承 clip 属性的值。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>NTHOME-零基础入门学习Web(HTML5+CSS3)</title>
<style>
img
{
position:absolute;
/*rect (top, right, bottom, left)*/
clip:rect(0px,100px,100px,0px);
}
</style>
</head>
<body>
<img src="../img/logo.png" width="100" height="140" /></body>
</html>
表格中的数字表示支持该属性的第一个浏览器版本号。
Safari | Chrome | FireFox | IE |
1.0 | 1.0 | 1.0 | 8.0 |