mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
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 :^).
14 lines
218 B
HTML
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>
|