Last active
August 16, 2022 01:15
-
-
Save mikeott/8fe5479bd4097137c0be86b13c56102a to your computer and use it in GitHub Desktop.
CSS clip image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Note: Clip is deprecated and will be replaced by the clip-path in the future. */ | |
#my-div img { | |
position: absolute; | |
clip: rect( 0px, 300px, 177px, 0px ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment