blob: e12df66022ab5ab1a1f5edb87d15473de574d93e [file] [log] [blame]
<!-- Blend a background image and a background color specifying background-repeat: no-repeat -->
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
background-image: url('resources/white_square.svg');
background-color: #777777;
background-repeat: no-repeat;
width: 200px;
height: 200px;
margin: 10px;
}
</style>
</head>
<body>
<div style="-webkit-background-blend-mode: multiply;"></div>
</body>
</html>