blob: 94d5a5a9789c1daf02f9862809c24d7aa3ab9746 [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;
background-blend-mode: multiply;
}
</style>
</head>
<body>
<div></div>
</body>
</html>