
CSS Clip property defines the rectangular clipping region for an absolute positioned element. In other words, clip is used to crop the image. ver 2
img {
position: absolute;
//clip: shape(top, right, bottom, left)
clip: rect(0px,50px,100px,10px);
}
Example 1: CSS Clip Property
Ad: