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
2 changes: 1 addition & 1 deletion exercises/01.2-Your-First-Style/README.es.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `01.2` Tu Primer Estilo

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.
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 los `anchors` de mi sitio web (etiquetas `<a>`) sean azules (`blue`):

Expand Down
4 changes: 2 additions & 2 deletions exercises/01.2-Your-First-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=8b12AFC6bWs"

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 you 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 All @@ -16,6 +16,6 @@ a {

## 📝 Instructions:

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

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