Skip to content

Commit

Permalink
clase de filas terminada.
Browse files Browse the repository at this point in the history
  • Loading branch information
Traka-Dev committed Dec 3, 2020
1 parent e89463b commit 8aa8d97
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
28 changes: 28 additions & 0 deletions filas/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Columnas</title>
</head>
<link rel="stylesheet" href="./styles.css">

<body>
<section class="container">
<div class="item">contenido #1</div>
<div class="item">contenido #2</div>
<div class="item">contenido #3</div>
<div class="item">contenido #4</div>
<div class="item">contenido #5</div>
<div class="item">contenido #6</div>
<div class="item">contenido #7</div>
<div class="item">contenido #8</div>
<div class="item">contenido #9</div>
<div class="item">contenido #10</div>
<div class="item">contenido #11</div>
<div class="item">contenido #12</div>
</section>
</body>

</html>
16 changes: 16 additions & 0 deletions filas/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
body {
font-family: monospace;
}

.container {
display: grid;
/* grid-template-columns: 25% 200px 25%;
grid-template-rows: 300px 300px; */
grid-template: 300px 100px 100px / 50% 200px 100px;
}

.item {
background-color: lightblue;
padding: 10px;
border: 1px solid red;
}

0 comments on commit 8aa8d97

Please sign in to comment.