File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
66
77CSS trata sobre estilos (styles). Para aplicar estilos, siempre debes seguir estos pasos:
88
9- 1 . Lee el HTML y elije qué elemento deseas decorar o aplicar estilos.
9+ 1 . Lee el HTML y elige qué elemento deseas decorar o aplicarle estilos.
1010
11112 . Programáticamente selecciona el elemento que deseas decorar con los selectores de CSS.
1212
@@ -26,7 +26,7 @@ Mira este ejemplo:
2626```
2727
2828Tenemos un enlace de HTML ` <a> ` que lleva a las personas a google.com cuando se hace clic.
29- Usamos CSS para selectionar todas las etiquetas ` <a> ` y luego hacerlas ` pink ` .
29+ Usamos CSS para seleccionar todas las etiquetas ` <a> ` y luego hacerlas ` pink ` .
3030
3131## 📝 Instrucciones
3232
@@ -36,4 +36,4 @@ Usamos CSS para selectionar todas las etiquetas `<a>` y luego hacerlas `pink`.
3636
3737Debería verse así:
3838
39- ![ 01 Hello World Exercise Preview] ( ../../.learn/assets/01-1.png?raw=true )
39+ ![ 01 Hello World Exercise Preview] ( ../../.learn/assets/01-1.png?raw=true )
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
33---
44# ` 01 ` Hello World in CSS
55
6- CSS is about styles. To apply styles you always have to follow this steps:
6+ CSS is about styles. To apply styles you always have to follow these steps:
77
8- 1 . Read the HTML and pick what element do you want to decorate or apply styles to.
8+ 1 . Read the HTML and pick what element you want to decorate or apply styles to.
99
10- 2 . Programatically select the element you want to style using CSS Selectors.
10+ 2 . Programmatically select the element you want to style using CSS Selectors.
1111
12123 . Write the styling that you want by using CSS rules.
1313
@@ -25,7 +25,7 @@ Look at this example:
2525```
2626
2727We have an HTML anchor ` <a> ` that takes people to google.com when clicked.
28- We use CSS to tell (selected) all the anchor tags and make then pink.
28+ We use CSS to select all the anchor tags and make them pink.
2929
3030## 📝 Instructions:
3131
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ test("There should be a target attribute pointing to '_blank'", ()=>{
2828 expect ( target ) . toBe ( "_blank" ) ;
2929} )
3030
31- test ( "The anchor tag should not contains any inline style" , ( ) => {
31+ test ( "The anchor tag should not contain any inline style" , ( ) => {
3232 let emptyBodyInlineStyle = { } ;
3333 expect ( a . style . _values ) . toEqual ( emptyBodyInlineStyle ) ;
34- } ) ;
34+ } ) ;
You can’t perform that action at this time.
0 commit comments