CSS IE 7 块元素不是 100% 宽度
我正忙着让布局在 IE 7 中正常工作,但我被块元素和 IE 7 困住了。
这是一个示例: http://jsfiddle.net/mvUNz/
这适用于所有浏览器,但在 Ie 7 中进度条不是 100% 宽度?
有人可以帮我解决这个问题吗?
I am busy to make a layouts works right in IE 7 but i am stuck with a block element and IE 7.
Here is a example: http://jsfiddle.net/mvUNz/
This is working for all browsers right but in Ie 7 the progressbar is not 100% width?
Can somewone help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已为您修复: Fiddle
与您之前的代码相比 - 您有很多不需要的浮动 - float只有当确实需要的时候,我才会清除代码中不必要的东西。否则,问题是
.small
中的float:left
。*编辑。
There fixed it for you: Fiddle
Compare with your previous code - you had way to much unneeded floats - float only when it is really needed, I cleaned the code out from unnecessary stuff. Otherwise the problematic was
float:left
in.small
.*edited.