blob: ad20048ff6ea960e2a1dc5a2c7b0697e905462a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<style>
div { color: red; }
div::first-line { color: green }
</style>
<div id="x"><span id="y">green</span></div>
<script>
x.offsetWidth;
var span = document.createElement('span');
span.textContent = 'This should be ';
y.insertBefore(span, y.firstChild);
</script>
|