ladybird/Tests/LibWeb/Layout/input/letter-spacing-end-of-line-001.html
Kostya Farber 373c80db68 LibWeb: Start implementing letter spacing
Letter spacing is applied during text shaping and `shape_text` is used
in places other `InlineLevelIterator` so way may have more work to do,
however this is a good start :^).
2024-11-05 10:40:22 +00:00

14 lines
218 B
HTML

<!DOCTYPE html>
<style>
div {
font-family: monospace;
font-size: 3em;
}
span {
float: left;
letter-spacing: 1ch;
}
</style>
<div>12345</div>
<div><span>aa</span>a</div>