-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tamaño de items en columnas</title>
<style>
body {
font-family: Arial;
}
.container {
display: grid;
grid-template: repeat(4,1fr) / repeat(4,1fr);
grid-gap: 10px;
height: 100vh;
}
.item {
background: lightblue;
padding: 10px;
border: 1px solid red;
/*margin-right: 10px;*/
/*margin-bottom: 10px;*/
}
.item:nth-of-type(1) {
background: blue;
grid-column-start: 1;
grid-column-end: 3;
}
.item:nth-of-type(8){
/* grid-column: 1 / span 2 ; */
grid-column: 1 / -1;
}
.item:nth-of-type(7){
grid-column: 2 / 4 ;
}
</style>
</head>
<body>
<section class="container">
<div class="item">item 1</div>
<div class="item">item 2</div>
<div class="item">item 3</div>
<div class="item">item 4</div>
<div class="item">item 5</div>
<div class="item">item 6</div>
<div class="item">item 7</div>
<div class="item">item 8</div>
<div class="item">item 9</div>
<div class="item">item 10</div>
<div class="item">item 11</div>
<div class="item">item 12</div>
</section>
</body>
</html>