I have got this image:
And I want to crop 200px from top and 200px from bottom.
Cropped image:
I want to do this in CSS.
How can I achieve that?
You can use the CSS property called clip
. Have a look at the documentation here.
For example:
img {
position: absolute;
clip: rect(0px,60px,200px,0px);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With