Skip to content

Commit

Permalink
[#525]: Add image to extra example
Browse files Browse the repository at this point in the history
  • Loading branch information
fdejesusmazzoni committed Apr 22, 2023
1 parent 11428b5 commit 0e939dd
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions 01-layout/02-flexbox/07-justify-align/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Vamos a ver que el posibilidades nos ofrece flexbox:
<body>
<div id="flex-container">
<div class="box" id="box1">BOX 1</div>
<div class="box" id="box2">BOX 1</div>
<div class="box" id="box3">BOX 1</div>
<div class="box" id="box2">BOX 2</div>
<div class="box" id="box3">BOX 3</div>
</div>
</body>
```
Expand Down Expand Up @@ -110,9 +110,9 @@ Vamos a crear una nueva row:
```diff
<div id="flex-container">
<div class="box" id="box1">BOX 1</div>
<div class="box" id="box2">BOX 1</div>
<div class="box" id="box3">BOX 1</div>
+ <div class="box" id="box4">BOX 1</div>
<div class="box" id="box2">BOX 2</div>
<div class="box" id="box3">BOX 3</div>
+ <div class="box" id="box4">BOX 4</div>
</div>
```

Expand Down
12 changes: 6 additions & 6 deletions 01-layout/02-flexbox/12-extra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Y ¿Por que se deforman? Vamos a evitarlo
main {
background-color: chocolate;
flex: 1;
+ align-item: center;
+ align-items: center;
}
```

Expand All @@ -63,7 +63,7 @@ Bueno vamos bien, pero el scroll nos indica que las imagenes son mas grandes que
main {
background-color: chocolate;
flex: 1;
align-item: center;
align-items: center;
+ overflow: auto;
}
```
Expand All @@ -74,7 +74,7 @@ main {
main {
background-color: chocolate;
flex: 1;
align-item: center;
align-items: center;
overflow: auto;
+ flex-wrap: wrap;
}
Expand All @@ -86,7 +86,7 @@ Vale...y ahora vamos a darle espacio de separacion a cada elemento:
main {
background-color: chocolate;
flex: 1;
align-item: center;
align-items: center;
overflow: auto;
flex-wrap: wrap;
+ gap: 5px
Expand All @@ -99,7 +99,7 @@ Y ahora centramos los elementos en el eje principal.
main {
background-color: chocolate;
flex: 1;
align-item: center;
align-items: center;
overflow: auto;
flex-wrap: wrap;
gap: 5px;
Expand All @@ -113,7 +113,7 @@ Y por ultimo vamos a evitar que tengamos tango espacio vacio. Para ello lo centr
main {
background-color: chocolate;
flex: 1;
align-item: center;
align-items: center;
overflow: auto;
flex-wrap: wrap;
gap: 5px;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0e939dd

Please sign in to comment.