Newer
Older
<!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>