blob: d4b218d1ad86ba5492441e26a1dec2624f39c97f (
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
27
28
29
30
|
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var s = document.getElementById("s");
var t = document.getElementById("t");
s.remove();
t.style.display = "none";
}
</script>
<style id="s">
.float { float: right; height: 1em; }
</style>
<style>
#t { border: 1px solid green; }
</style>
</head>
<body onload="boom();">
<div style="column-count: 2;"><div id="t" class="float"></div></div>
</body>
</html>
|