blob: a998bc76f3b1f64cfb5fb19e30a00eaec71326fe [file] [log] [blame]
<html>
<head>
<style>
body {
margin: 0;
}
.before {
background: blue;
margin: 10px;
width: 200px;
height: 200px;
position: fixed;
}
html {
background-image: linear-gradient(white, white);
background-attachment: fixed;
background-position: 50% 50%;
background-size: 400px 400px;
background-color: red;
}
</style>
</head>
<body>
<div class="before"></div>
</body>
</html>