-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathmedia_queries.html
48 lines (43 loc) · 1.07 KB
/
media_queries.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example: Media queries</title>
<style>
body {
background-color: #2db34a;
}
/* in print the page background is white and the navigation menu is hidden */
@media print {
body {
background-color: white;
}
nav {
display: none;
}
}
/* if the window size is smaller than 400px, then the background is different */
@media screen and (max-width: 400px) {
body {
background-color: yellow;
}
}
/* if the window size is smaller than 400px, then the background is different */
@media screen and (max-device-width: 400px) {
body {
background-color: purple;
}
}
</style>
</head>
<body>
<nav>
<ul>
<li>Item #1</li>
<li>Item #2</li>
<li>Item #3</li>
</ul>
</nav>
<p>Lorem ipsum</p>
</body>
</html>