Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="hidden">
    <p id="watermark">iamvdo</p>
  </div>
  <div class="image"></div>
</body>
</html>
 
.image {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 200px;
  background: url(http://unsplash.it/200/200?image=51);
}
.image::after {
  content: '';
  position: absolute;
  top: -20%; left: -20%; bottom: -20%; right: -20%;
  background: -moz-element(#watermark) center no-repeat;
  transform: rotate(-45deg);
}
#watermark {
  font: 3em sans-serif;
  color: rgba(0,0,0,.5);
  display: flex;
  width: 200px;
  height: 100px;
  justify-content: center;
  align-items: center;
}
#watermark::before {
  content: '©';
}
.hidden {
  height: 0;
  overflow: hidden;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
iamvdopro
0viewers