Skip to content

Commit 9f13272

Browse files
authored
Add missing semi-colons after declarations (#123)
Adding semicolons after the last declarations
2 parents edb2712 + 36f3193 commit 9f13272

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

learn/selectors/after-icon.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::after {
14-
content: " ➥"
14+
content: " ➥";
1515
}
1616

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

2525
<textarea class="playable playable-css" style="height: 80px;">
2626
.box::after {
27-
content: " ➥"
27+
content: " ➥";
2828
}
2929
</textarea>
3030

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

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

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)