IE8 CSS宽度,不能使用百分比?
有人对此有任何问题吗? px 和 em 工作正常,% 不执行任何操作。我只是想在 IE8 中延长这个 div 的屏幕长度。微软,请。找了好久现在终于有用了。
CSS
#topPane {width:100%;
height:100px;
background-color:#0C9;}
HTML
<div id="topPane">a</div>
Anyone have any problems with this? px and em work fine, % does nothing. I just want to extend this div the length of the screen in IE8. Microsoft, please. Been looking for a while to now avail.
CSS
#topPane {width:100%;
height:100px;
background-color:#0C9;}
HTML
<div id="topPane">a</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应大众要求:pi 发布我的评论/答案
by popular request :p i post my comment/answer
如果我们将父元素的宽度定义为 100%,将子元素的宽度定义为 90%,如果还有其他子元素,则进一步如此。应该可以用吧???
If we define width as 100% for parent and 90% fro the child like that further if there are futher childs elements. It should work right???