Skip to content

Commit 3f5ab50

Browse files
Merge pull request #90 from josemoracard/jose5-01.2-your-first-style
fixed text 01.2-your-first-style
2 parents f976783 + 115a718 commit 3f5ab50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exercises/01.2-Your-First-Style/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `01.2` Tu Primer Estilo
22

3-
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.
3+
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

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

exercises/01.2-Your-First-Style/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=8b12AFC6bWs"
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 you 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 {
@@ -16,6 +16,6 @@ a {
1616

1717
## 📝 Instructions:
1818

19-
1. Right now there is a style being applied that is responsable of making the anchor `red`.
19+
1. Right now there is a style being applied that is responsible for making the anchor `red`.
2020

2121
2. Change the style to make your anchor look `yellow`.

0 commit comments

Comments
 (0)