gpt4 book ai didi

IOS Safari html 元素不支持缩放子项的宽度

转载 作者:太空宇宙 更新时间:2023-11-04 07:45:42 24 4
gpt4 key购买 nike

我试图将一个元素置于 div 中,该元素在其上进行了转换,但我注意到该元素仅在 iOS Safari 中会漂浮在页面之外。经过调查,我认为问题可以归结为以下几点:

<!DOCTYPE html style="width: 100%">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="child1" style="width: 100%"></div>
<div id="child2" style="width: 100%; scale(2)"></div>
</body>
</html>

您会发现在 html 上计算出的宽度是 200%,因此 child1 是 200%。

最佳答案

修复方法是在 html 样式上设置其他属性:

html {
width: 100%;
overflow: hidden;
transform: scale(1);
}

关于IOS Safari html 元素不支持缩放子项的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48157071/

24 4 0
文章推荐: jquery - Bootstrap 4 scrollSpy 需要任何类型的 jQuery 代码来实现底部边框事件状态吗?
文章推荐: python - 学习 Python 2 还是 3?
文章推荐: python - scipy.optimize.leastsq 使用哪种优化算法?
文章推荐: html - 父级
中的两个
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com