Skip to content

Commit 5b8fdb2

Browse files
committed
instructions now using default value, solution as well
1 parent 27c870b commit 5b8fdb2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

exercises/02.1-Background/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Si es una imagen, puedes especificar si quieres que la imagen se repita horizont
1414

1515
4. Construye y previsualiza el ejercicio nuevamente.
1616

17-
5. Cambia el `background-repeat` a `inherit` para que se repita sobre el eje x y el eje y.
17+
5. Cambia el `background-repeat` a `repeat` para que se repita sobre el eje x y el eje y.
1818

1919
6. Construye y previsualiza el ejercicio nuevamente.
2020

exercises/02.1-Background/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If it is an image, you can specify if you want the image to be repeated horizont
1919

2020
4. Build and Preview the exercise again.
2121

22-
5. Change the background-repeat to 'inherit' to make it repeat over the x axis and y axis.
22+
5. Change the background-repeat to 'repeat' to make it repeat over the x axis and y axis.
2323

2424
6. Build and Preview the exercise again.
2525

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
body {
22
background-image: url(https://4geeksacademy.github.io/exercise-assets/img/bg/small-mosaic.jpg);
33
background-size: contain;
4-
background-repeat: inherit;
5-
}
4+
background-repeat: repeat;
5+
}

0 commit comments

Comments
 (0)