尽管 iPhone 模拟器中有底部 urlbar,是否有任何 css 高度为 100%
每个人 我将在我的反应项目的移动版本中全屏填充我的模式。 我刚刚添加了CSS h-100,在iPhone(iphone12,iOS 15)模拟器中,它被urlbar剪切并显示滚动条。 请帮助我。 我尝试过以下
App.js
const appHeight = () => {
const doc = document.documentElement
doc.style.setProperty('--app-height', `${window.innerHeight}px`)
}
window.addEventListener('resize', appHeight)
appHeight()
App.css
:root {
--app-height: 100%;
}
body {
padding: 0;
margin: 0;
overflow: hidden;
@media (max-width: 500px) {
height: var(--app-height) !important;
}
}
everyone
I am going to fill fullscreen my modal in my react project's mobile version.
I have just added CSS h-100 and in iPhone(iphone12, iOS 15) emulator, it is cut by urlbar and scrollbar is showing.
pls help me.
I have tried following
App.js
const appHeight = () => {
const doc = document.documentElement
doc.style.setProperty('--app-height', `${window.innerHeight}px`)
}
window.addEventListener('resize', appHeight)
appHeight()
App.css
:root {
--app-height: 100%;
}
body {
padding: 0;
margin: 0;
overflow: hidden;
@media (max-width: 500px) {
height: var(--app-height) !important;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论