Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/01.3-Your-Second-Style/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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:

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

```css
a {
Expand All @@ -14,4 +14,4 @@ a {

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

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.
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.
2 changes: 1 addition & 1 deletion exercises/01.3-Your-Second-Style/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=W0CAqLIAoZI"

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:

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

```css
a {
Expand Down
2 changes: 1 addition & 1 deletion exercises/01.3-Your-Second-Style/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("All the styles should be applied", ()=>{
expect(styles["background"]).toBe("blue");
});

test("The body tag should not contains any inline style", ()=>{
test("The body tag should not contain any inline style", ()=>{
let emptyBodyInlineStyle = {};
expect(body.style._values).toEqual(emptyBodyInlineStyle);
});
Expand Down