<!DOCTYPE html> | |
<title>Mixed declarations and rules</title> | |
<link rel="help" href="https://drafts.csswg.org/css-nesting/#nested-declarations-rule"> | |
<style> | |
div { | |
width: 100px; | |
height: 100px; | |
background-color: blue; | |
@media all { | |
background-color: red; | |
} | |
background-color: green; | |
} | |
</style> | |
<body> | |
<p>Tests pass if <strong>block is green</strong></p> | |
<div class="test"></div> | |
</body> |