mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00

Fixes an issue where relative font sizes would "snap" to integer sizes in an unpleasant-looking way while resizing on some websites.
8 lines
183 B
HTML
8 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>
|