Skip to content

Commit 4f8da7e

Browse files
Merge pull request 4GeeksAcademy#91 from josemoracard/jose6-01.3-your-second-style
fixed text 01.3-your-second-style
2 parents 3f5ab50 + f7354f9 commit 4f8da7e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

exercises/01.3-Your-Second-Style/README.es.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle:
44

5-
Por ejemplo, este es el código si quiero que todos las anchors de mi sitio web (`etiquetas <a>`) sean azules:
5+
Por ejemplo, este es el código si quiero que todos los anchors de mi sitio web (etiquetas `<a>`) sean azules:
66

77
```css
88
a {
@@ -14,4 +14,4 @@ a {
1414

1515
1. Haz que el fondo de tu sitio web sea azul (blue) seleccionando el `body` y aplicando la regla `background` con valor `blue`.
1616

17-
2. Compila y muestra una vista previa del ejercicio y tu resultado debe ser un body azul (`blue`), es decir toda la página azul.
17+
2. Compila y muestra una vista previa del ejercicio y tu resultado debe ser un `body` azul (`blue`), es decir, toda la página azul.

exercises/01.3-Your-Second-Style/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=W0CAqLIAoZI"
66

77
When doing CSS, the idea is to apply `css rules` to your `html elements`, you always have to select the element first, and then specify what rules you want to apply to it:
88

9-
For example, this is the code if I want to make all my website anchors (`<a> tag's`) blue:
9+
For example, this is the code if you want to make all your website anchors (`<a>` tags) blue:
1010

1111
```css
1212
a {

exercises/01.3-Your-Second-Style/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("All the styles should be applied", ()=>{
1313
expect(styles["background"]).toBe("blue");
1414
});
1515

16-
test("The body tag should not contains any inline style", ()=>{
16+
test("The body tag should not contain any inline style", ()=>{
1717
let emptyBodyInlineStyle = {};
1818
expect(body.style._values).toEqual(emptyBodyInlineStyle);
1919
});

0 commit comments

Comments
 (0)