IE7 中的 jQuery tablesorter 插件列宽不正确
我正在使用 tablesorter 插件 (http://tablesorter.com),并且在 IE7 中遇到列宽问题。 它在 Firefox 中看起来不错,有时在 IE7 中也看起来不错。
这是问题的屏幕截图:
其外观应如下:
I am using the tablesorter plugin (http://tablesorter.com) and am having a problem with column widths in IE7. It looks fine in Firefox and sometimes in IE7.
Here's a screenshot of the problem:
and here's how it's supposed to look:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 IE 中常见的布局问题。 如果您使用 CSS 来设置列宽样式,还要将列宽添加到 td 标签中。 将第一列设置为一个会尝试占用大部分空间的百分比,例如 50% 等。 第一个列的宽度将采用一切可以的宽度,其他列将遵守其静态宽度。
This is a common layout problem in IE. If you are using CSS to style the columns width, also add the column widths to the td tags. Set the first column to a percentage that will try to suck up most of the space, like 50% or something. The first column width will take everything that it can and the other columns will abide by their static width.