mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-17 21:49:42 +00:00
When the css tab-size property is a number, we need to add the associated letter-spacing and word-spacing to it's width.
9 lines
146 B
HTML
9 lines
146 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
tab-size: 8;
|
|
word-spacing: 2ch;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
<div>	A</div>
|