-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolapso.html
45 lines (39 loc) · 922 Bytes
/
colapso.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Colapso</title>
<style>
.container {
display: flex;
flex-direction: column;
}
.container-2 {
display: grid;
}
div {
margin: 20px;
background: red;
}
.container > div {
background: blue;
}
.container-2 > div {
background: green;
}
</style>
</head>
<body>
<section class="container">
<div>Parrafo de prueba 1</div>
<div>Parrafo de prueba 2</div>
</section>
<div>Parrafo de prueba 3</div>
<div>Parrafo de prueba 4</div>
<section class="container-2">
<div>Parrafo de prueba 5</div>
<div>Parrafo de prueba 6</div>
</section>
</body>
</html>