tenfourfox/layout/reftests/css-blending/background-blending-background-size-cover.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
359 B
HTML

<!-- Blend a background image and a background color specifying background-size: cover -->
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
background: url('as-image/white_square.svg'), #777777;
background-size: cover;
width: 200px;
height: 200px;
margin: 10px;
background-blend-mode: multiply;
}
</style>
</head>
<body>
<div></div>
</body>
</html>