Skip to content
Snippets Groups Projects
overlay.html 353 B
Newer Older
O'Reilly Media, Inc.'s avatar
O'Reilly Media, Inc. committed
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Demo: Applying CSS Blend Modes</title>
  <style>
	.blend { width: 389px; height: 259px; background:#de6e3d url("img/flowers.jpg") no-repeat center center; }
	.blend.overlay { background-blend-mode: overlay; }
  </style>
</head>
<body>
  <div class="blend overlay"></div>
</body>
</html>