clip 属性定义剪切图像
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
img{
width:200px;
height:200px;
position:absolute;
clip:rect(0px 100px 200px 0px)
}
</style>
</head>
<body>
<h3>clip属性剪切图像实例 </h3>
<img src="img/pingguo.jpg"></img>
</body>
</html>
运行效果:
评论