blob: 8de69c94bdfe6bec23af816340e8e993d8314369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<html>
<style>
#target
{
border-color: green;
border-style: solid;
padding: 1em 1em;
}
#target::after
{
content: "AFTER";
display: table-row;
border-color: blue;
border-style: solid;
padding: 1em 1em;
}
</style>
<div id="target">
<div id="span">CONTENT </div>
</div>
<script>
document.body.offsetTop;
target.style.color = "red";
</script>
</html>
|