mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
19 lines
300 B
HTML
19 lines
300 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
div:first-letter { float: left; }
|
|
div { -moz-column-count: 2; width: 0; }
|
|
</style>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var v = document.getElementById("v");
|
|
v.removeChild(v.firstChild);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<div id="v">a b<span>c</span></div>
|
|
</body>
|
|
</html>
|