blob: 6c97282b50fa4972be0ca6bec4ae30cb427c54a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<head id="a">
<style>
* {
column-count: 1
}
.x {
position: fixed;
column-span: all;
}
</style>
<script>
function go() {
a.appendChild(b);
}
</script>
<body onload=go()>
<ol id="b" class="x">A</ol>
|