gpt4 book ai didi

reactjs - 移动 View 上的 CSS 格式设置有问题

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

当我在移动设备上查看我的 React 应用程序时,右侧总是有额外的空间:

https://dsousadev.github.io/23imgs/

当我使用开发工具模拟移动 View 时,我看不到这个额外的空间,但是当我在各种移动浏览器上查看网站时,空间就在那里,而且应用程序不会自动调整。

这是我的媒体查询中的当前 CSS:

@media all and (max-width: 414px) {
.ImageCard,
#CardImage {
width: 314px;
}
#CardImage {
height: 314px;
}
ul {
font-size: 1.2rem;
padding: 0 15px;
}
}

最佳答案

元素<input accept="image/*" name type="file">导致了这个问题。

如果我申请display: none.fileContainer input , 空格消失。

编辑

好的,所以再仔细研究一下这个问题,它看起来像 semantic.min.css正在申请 font-size: 100%button, input, optgroup, select, textarea .这会导致您的输入变大(这是 visible 时的输入):

enter image description here

如果我们禁用 font-size: 100% ,输入正确呈现:

enter image description here

之后,您的原始样式起作用了:

enter image description here

所以 display: none或恢复 font-size会工作:)

关于reactjs - 移动 View 上的 CSS 格式设置有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55408697/

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