Skip to content

Adding semicolons after the last declarations #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions learn/selectors/after-icon.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<style class="editable">
.box::after {
content: " ➥"
content: " ➥";
}

</style>
Expand All @@ -24,7 +24,7 @@

<textarea class="playable playable-css" style="height: 80px;">
.box::after {
content: " ➥"
content: " ➥";
}
</textarea>

Expand All @@ -38,4 +38,4 @@
</body>
<script src="../playable.js"></script>

</html>
</html>
6 changes: 3 additions & 3 deletions learn/selectors/before.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<style class="editable">
.box::before {
content: "This should show before the other content."
content: "This should show before the other content. ";
}

</style>
Expand All @@ -24,7 +24,7 @@

<textarea class="playable playable-css" style="height: 80px;">
.box::before {
content: "This should show before the other content."
content: "This should show before the other content. ";
}
</textarea>

Expand All @@ -38,4 +38,4 @@
</body>
<script src="../playable.js"></script>

</html>
</html>