first commit

This commit is contained in:
2026-04-13 07:15:44 +00:00
parent ad29150770
commit 97a4e3af52
239 changed files with 6671 additions and 91 deletions

View File

@@ -0,0 +1,7 @@
<div style="padding-left: 10px">
AAA&nbsp;
<div class="only-before">&nbsp;BBB&nbsp;</div>
<div class="only-after">&nbsp;CCC&nbsp;</div>
<div class="both">&nbsp;DDD&nbsp;</div>
EEE
</div>

View File

@@ -0,0 +1,24 @@
div.only-before::before {
content: 'JustBefore';
}
div.only-after::after {
content: 'JustAfter';
}
div.both::before {
content: 'BothBefore';
}
div.both::after {
content: 'BothAfter';
}
#dom-node {
background-color: white;
color: black;
font-family: monospace;
font-size: 20px;
height: 400px;
width: 400px;
}