Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hanneskaeufler/b465477df3dcea467806b5be876dded7 to your computer and use it in GitHub Desktop.
Save hanneskaeufler/b465477df3dcea467806b5be876dded7 to your computer and use it in GitHub Desktop.
HTML:
<div class="watermarked"><img src="bild.jpeg" /></div>
CSS:
.watermarked {
position: relative;
}
.watermarked:after {
content: "Copyright";
display: inline-block;
width: 100%;
height: 100%;
position: absolute;
background: #aaa;
opacity: 0.7;
top: 0px;
left: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment