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