Is there a way to display only a portion of an image (in this case, to hide the watermark) similar to how it is done on 9gag.com? I attempted to use clip in CSS, but it requires the image to be positioned absolutely, which is not ideal for me.
Are there alternative methods to achieve this effect using CSS? JavaScript is also acceptable.
Thank you.
///////////////////////////////////////////////// Here is the solution to my issue. It took me some time to realize that I can utilize the margin attribute. Silly me!
img {margin:0 auto -33px;}