gpt4 book ai didi

android - REM 单元在 Android 2.* 和 Web View(直到 Android 4.2) native 浏览器中效果不佳

转载 作者:行者123 更新时间:2023-11-28 09:52:19 24 4
gpt4 key购买 nike

这是我搜索了很长时间的错误,但一无所获。

在我正在进行的一个元素中,我开始使用 REM 单位。在每个有文本的元素中,我都给出了字体大小和行高。

我不知道为什么,但不知何故它不理解 REM 的行高,并且表现得就像没有 REM 一样。

html{
font-size:1px;
}

.fu{
font-size:20rem;
line-height:24rem;/*old android, act like 24 without the REM Unit*/
}
/*normal browser - line-height 24*1 = 24px(root-font-size)
old android browser and webview line-height 24 * 20(font-size) = 480px*/

LIVE EXAMPLE (在桌面和旧 android 上观看)

我很高兴有一个合适的解决方案,使我能够在行高中使用 REM 单位。

最佳答案

你不能在 android 2 中使用 rem line-height *

解决方案:

使用字体大小的倍数

示例

html{
font-size:1px;
}

.fu{
font-size:20rem;
line-height:1.2; /*1.2 equal to 24rem(in this case) and will resolve conflict in old android*/
}

关于android - REM 单元在 Android 2.* 和 Web View(直到 Android 4.2) native 浏览器中效果不佳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25034158/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com