Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>CSS Test: Line wrapping after leading out-of-flow objects</title>
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
div {
width: 5ch;
/* When the line was broken after the leading OOF, it is hardly visible
because it is an empty line box.
Applying `text-indent` can make it visible; if the line is indented,
it is the first line, proving the line did not wrap. */
text-indent: 3ch;
}
</style>
<body>
<div><span style="position: absolute"></span>123456</div>
</body>