-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmedia querry.html
76 lines (72 loc) · 1.4 KB
/
media querry.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>media</title>
<style>
.container{
height: 100vh;
border: 2px solid red;
}
.main{
color: white;
display: none;
}
#div-1{
background-color: yellow;
}
#div-2{
background-color: red;
}
#div-3{
background-color: blue;
}
#div-4{
background-color: cadetblue;
}
@media (min-width:500px) {
#div-4{
display: block;
background-color: brown;
font-size: 40px;
text-align: center;
}
}
@media(max-width:500px) and (min-width:300px)
{
#div-3
{
background-color: rgb(168, 8, 168);
font-size: 30px;
display: block;
text-align: center;
}
}
@media (min-width:200px) and (max-width:300px)
{
#div-1{
background-color: aqua;
display: block;
text-align: center;
font-size:25px ;
}}
@media (min-width:1px) and (max-width:200px)
{#div-2{
display: block;
background-color: red;
text-align: center;
font-size: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="main" id="div-1">i am small</div>
<div class="main" id="div-2">i am more than small</div>
<div class="main" id="div-3">i am medium</div>
<div class="main" id="div-4">i am large</div>
</div>
</body>
</html>