17 lines
205 B
HTML
17 lines
205 B
HTML
<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>
|