Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-indent/text-indent-abspos-hanging-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Absolutely positioned objects with `text-indent: hanging'</title>
<link rel="match" href="reference/text-indent-abspos-hanging-001-ref.html">
<style>
.test {
line-height: 1;
width: 8ch;
}
.hanging {
text-indent: 2ch hanging;
}
.marker {
display: inline;
position: absolute;
width: 4ch;
height: 1em;
background: lime;
}
</style>
<div class="test">
<div class="hanging">
<span class="marker"></span>
0000
0000
</div>
<div class="hanging">
<span class="marker"></span>
</div>
</div>