IE7中显示内联块的问题
我正在使用 .ui-helper-clearfix { display: inline-block;在修复浏览器兼容性问题时,在 jquery_custom_datatable.css 和 jquery-ui-1.8.12.custom.css 中。我遇到了一个问题,我需要删除 .ui-helper-clearfix { display: inline-block ; }
仅在 IE7 中对我的表格产生额外宽度。删除它并没有影响 IE8 和 mozilla 上的 css。但对 IE7 中的其他表格产生了一些不利影响,例如删除需要的宽度。我我想知道是否有任何替代方案,这样除了删除它之外,还会有任何其他替代修复 .ui-helper-clearfix { display: inline-block; } }
对于 IE7。 谢谢
I am using .ui-helper-clearfix { display: inline-block; } in jquery_custom_datatable.css and jquery-ui-1.8.12.custom.css while fixing the browser compatibilty issues.I came over with a issue where i need to remove .ui-helper-clearfix { display: inline-block; }
which is effecting an extra width on my table only in IE7.Removing it havent effected the css on IE8 and mozilla.But made some adverse affects on other tables in IE7 such as removing the width where it is needed.I want to know is there any alternative for this one so that instead of removing it will there be any other alterative fix for .ui-helper-clearfix { display: inline-block; }
for IE7.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
inline-block
之前,我们使用floats
。这可能适合您的情况,但您可能需要稍微调整一下 CSS。Before
inline-block
, we usedfloats
. This may work in your situation, but you'll probably have to tweak your CSS a bit.