blob: a390b8c118e03c595b2487d41332948c2f88a9f0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
.box {
width: 300px;
height: 300px;
}
.rgb-background {
background-color: green;
}
@media (-webkit-min-device-pixel-ratio: 2) {
.box {
width: 150px;
height: 150px;
}
}
</style>
<body>
<div class="box rgb-background"></div>
</body>
</html>