Skip to content

Commit d3b649a

Browse files
authored
Update pseudo-elementos.md
1 parent 745019b commit d3b649a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seletores/pseudo-elementos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ O seletor `::before` cria um falso elemento antes do elemento em que é utilizad
4848
```
4949
```css
5050
div::before {
51-
content: esse é o ::before;
51+
content: 'esse é o ::before';
5252
color: red;
5353
}
5454
```
@@ -64,7 +64,7 @@ O seletor `::after` cria um falso elemento depois do elemento em que é utilizad
6464
```
6565
```css
6666
div::after {
67-
content: esse é o ::after;
67+
content: 'esse é o ::after';
6868
color: purple;
6969
}
7070
```

0 commit comments

Comments
 (0)