|
<html>
|
|
<head>
|
|
<style>
|
|
body:first-letter { float: right; }
|
|
</style>
|
|
<script>
|
|
function boom() {
|
|
document.body.firstChild.remove();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">abcכd
|
|
<div>This sentence should be the only text on the page.</div></body>
|
|
</html>
|