-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMediaQueries.html
More file actions
65 lines (48 loc) · 1.43 KB
/
MediaQueries.html
File metadata and controls
65 lines (48 loc) · 1.43 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Media Queries</title>
<style>
.box{
background-color: red;
color: white;
font-size: 72px;
text-align: center;
display: none;
}
@media only screen and(max-width:300px){
#box-1{
display: block;
background-color: cyan;
}
}
@media only screen and (max-width:500px) and (min-width:300px){
#box-2{
display: block;
background-color: violet;
}
}
@media(min-width:500px) and (max-width:800px){
#box-3{
display: block;
background-color: black;
}
}
@media(min-width:800px){
#box-4{
display: block;
background-color: green;
}
}
</style>
</head>
<body>
<!-- when screen width/height changes, add specific css to the page -->
<div class="box" id="box-1">Mai ek iPhone hoon</div>
<div class="box" id="box-2">Mai ek tablet hoon</div>
<div class="box" id="box-3">Mai ek computer hoon</div>
<div class="box" id="box-4">Mai ek wide screen computer hoon</div>
</body>
</html>