CSS 参考手册
CSS clip 属性
裁剪一张图像
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> img { position: absolute; clip: rect(0px, 60px, 200px, 0px); } </style> </head> <body> <img src="/examples/paper.gif" width="100" height="140" /> </body> </html>
运行结果:
点击运行 »