summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/printing/resources/mq-frame-100px.html
blob: ed823c09e89635da4933a941850265c2eb168e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<style>
body {
  margin: 0;
}
div {
  background: red;
}
@media (width: 100px) and (height: 100px) {
  div {
    background: green;
  }
}
</style>
<div style="height:100px;"></div>