trisquel-icecat/icecat/testing/web-platform/tests/css/css-nesting/mixed-declarations-rules.html
2025-10-06 02:35:48 -06:00

20 lines
404 B
HTML

<!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>