Skip to content

Commit 36f3193

Browse files
authored
Adding semicolon after declaration
1 parent 3d5dac2 commit 36f3193

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn/selectors/before.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<style class="editable">
1313
.box::before {
14-
content: "This should show before the other content."
14+
content: "This should show before the other content. ";
1515
}
1616

1717
</style>
@@ -24,7 +24,7 @@
2424

2525
<textarea class="playable playable-css" style="height: 80px;">
2626
.box::before {
27-
content: "This should show before the other content."
27+
content: "This should show before the other content. ";
2828
}
2929
</textarea>
3030

@@ -38,4 +38,4 @@
3838
</body>
3939
<script src="../playable.js"></script>
4040

41-
</html>
41+
</html>

0 commit comments

Comments
 (0)