Chrome 中高度 100%
我遇到了侧面 div
的问题,在 Chrome 中无法将高度设置为 100%。在FF中效果很好。
我正在使用:
html, body {
padding: 0px;
width: 100%;
height: 100%;
}
#div {
min-height: 100%;
}
这是为什么?
I'm having problems with a side div
that won't get the height to 100% in Chrome. It works just fine in FF.
I'm using:
html, body {
padding: 0px;
width: 100%;
height: 100%;
}
#div {
min-height: 100%;
}
Why is that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这对我来说在每个浏览器上都很完美:
你能提供更多细节吗?
编辑
这是根据所提供的信息更新的版本:
对于 Chrome、Firefox 和 IE8 来说一切看起来都很好
This works perfect for me on every browser :
Can you provide more details?
Edit
Here is the updated version based on the provided information :
Still everything looks fine for Chrome, Firefox and IE8
来自 http://doctype.com/give-two-nested-divs-100-最小高度:
From http://doctype.com/give-two-nested-divs-100-minheight:
您必须指定您的父母以及孩子的高度为 100%,因此
!important 将覆盖所有其他高度规则。尝试一下应该不会有问题。
You have to specify your parent with 100% height as well as the child so
The !important will overwrite all other height rules. Try that you should have no problems.
检查下面的代码,在
Zebra GC420d
标签打印机下工作和打印标签对我来说很好:希望有帮助!
Check with Below code, working and Printing labels fine for me under
Zebra GC420d
label printer:Hope it helps!