CLIP Property In CSS
clip Property in CSS
clip property Declares the shape of a clipped region when the value of the overflow property is set to a value other than visible.
Possible Value:
Shapes, or the predefined value auto. In CSS 2, the only valid shape is a rectangle, using the following format to specify the offset lengths from each side of the box: rect(top, right, bottom, left)
Examplediv { clip:auto; }
div { clip:rect(2px, 4px, 7px, 5px); }