-
Notifications
You must be signed in to change notification settings - Fork 0
/
flexbox.html
49 lines (38 loc) · 1022 Bytes
/
flexbox.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexboxen</title>
<style>
#blau {
background-color: #3e3eed;
display: flex;
}
.orange {
background-color: orangered;
padding: 10px;
width: 25px;
height: 25px;
margin: 20px;
}
@media screen and (max-width: 768px) and (min-width: 576px) {
#blau {
background-color: red;
}
.orange {
width: 50px;
border: 1px solid #3e3eed;
}
}
</style>
</head>
<body>
<div id="blau">
<div class="orange">Inhalt 1</div>
<div class="orange">Inhalt 2</div>
<div class="orange">Inhalt 3</div>
<div class="orange">Inhalt 4</div>
</div>
</body>
</html>