blob: f17c211cd93623849329709edf949c07035d8609 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<style>
body {
background: red;
width: 1000px;
height: 1000px;
}
@media (min-width: 795px) {
body {
background: green;
}
}
@media (min-height: 595px) {
body {
color: blue;
}
}
</style>
<body>
Should be blue on green if body's full size (including scrollbars) >= 795x595px.
</body>
|