mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-09 09:17:13 +00:00
Fixes an issue where relative font sizes would "snap" to integer sizes in an unpleasant-looking way while resizing on some websites.
9 lines
183 B
HTML
9 lines
183 B
HTML
<!doctype html><style>
|
|
.a { font-size: 20.5px; }
|
|
.b { font-size: 21px; }
|
|
.c { font-size: 21.5px; }
|
|
</style>
|
|
<span class="a">x</span>
|
|
<span class="b">x</span>
|
|
<span class="c">x</span>
|