CSS3提供了一個裁切圖片的功能, 可以讓設計師在抓圖片的時候,只框取圖片的部分就好 這個用法叫做clip object.style.clip="rect (top, right, bottom, left)" 不過他裁切的方法跟一般習慣的top,left,height,width有點不一樣 我用下面的範例跟圖片作示範 #crop { position:absolute; clip:rect(25px,200px,175px,50px); } 上圖是原圖為裁切 裁切出來下方的圖