14 lines
216 B
HTML
14 lines
216 B
HTML
<style>
|
|
del {
|
|
position: absolute;
|
|
}
|
|
|
|
body::first-line {
|
|
color: red;
|
|
}
|
|
</style>
|
|
<del></del>
|
|
<script>
|
|
document.documentElement.offsetTop;
|
|
document.styleSheets[0].cssRules[0].style.position = 'sticky'
|
|
</script>
|