-
Notifications
You must be signed in to change notification settings - Fork 0
/
34_media_queries.html
74 lines (61 loc) · 1.63 KB
/
34_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
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
<!doctype html>
<html lang="pt-br">
<head>
<title>pagina de exemplo estrutura basica</title>
<meta charset="utf-8">
<meta name="author" content="lucas">
<meta name="description" content="lista de documentos">
<meta name="keywords" content="html5, tecnologia">
<meta name="viewport" content="width=device-width">
<style>
body {
background: yellow;
font-size: 16px;
}
.teste {
background: red;
width: 320px;
height: 50px;
}
.container {
background: white;
padding: 15px;
font-size: 24px;
}
.container div {
background: #ccc;
margin: 15px;
height: 150px;
font-size: 22px;
}
/* a classe clearfix produz o mesmo efeito do overflow:aut; para limpar elementos que estão desposicionnados por causa do float */
.clearfix::after {
content: "";
display: block;
clear: both;
}
/* screen=tela
e maior e igual a 400px
*/
@media screen and (min-width: 400px) {
body {
background: orange;
}
.container div {
margin: 10px;
width: calc(50% - 30px);
float: left;
}
}
</style>
</head>
<body>
<h1>Exemplo de media queries</h1>
<p>Paragrafo qualquer</p>
<!-- <div class="teste"></div> -->
<div class="container clearfix">
<div>div 1</div>
<div>div 2</div>
</div>
</body>
</html>