案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
img 
5
{
6
position:absolute;
7
clip:rect(0px 50px 200px 0px)
8
}
9
</style>
10
</head>
11
12
<body>
13
<p>clip 属性剪切了一幅图像:</p>
14
<p><img border="0" src="/img/eg_bookasp.gif" width="120" height="151"></p>
15
</body>
16
17
</html>
18