Skip to content
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>