Skip to content

Commit 313b397

Browse files
authored
Update README.es.md
1 parent 2f9e3cf commit 313b397

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

exercises/08-Style-without-id-class/README.es.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# `08` Estilo sin identificación ni clase
1+
# `08` Style without ID or Class
22

33
Aquí tienes un hermoso formulario de inscripción, puedes leer el código para entender cómo se hizo.
44

5-
## 📝 Instrucciones
5+
## 📝 Instrucciones:
66

77
Reemplaza todos los selectores `.class` y `#id` del `index.html` y sustitúyelos por otros tipos de selectores para lograr la misma referencia. Por ejemplo:
88

9-
Para este html:
9+
Para este HTML:
1010

1111
```html
1212
<div><a class="myAnchor">Aquí hay un anchor</a></div>
@@ -15,17 +15,13 @@ Para este html:
1515
En lugar de:
1616

1717
```css
18-
<style>
19-
.myAnchor{ background: red; }
20-
</style>
18+
.myAnchor { background: red; }
2119
```
2220

2321
Podrías hacer esto:
2422

2523
```css
26-
<style>
27-
a{ background:red;}
28-
</style>
24+
a { background:red; }
2925
```
3026

3127
El único selector de clase que puedes seguir usando es `.active`.

0 commit comments

Comments
 (0)