x
1
2
<html>
3
<head>
4
<meta name="viewport" content="width=device-width, initial-scale=1.0">
5
<style>
6
body
7
{
8
background:skyblue;
9
}
10
11
@media (orientation: landscape) {
12
body {
13
background-color:pink;
14
}
15
}
16
</style>
17
</head>
18
<body>
19
<h1>CSS media query orientation</h1>
20
<p>Resize the browser window. When the width of this document is larger than the height, the background color is "skyblue", otherwise it is "lightgreen".</p>
21
22
</body>
23
</html>