flexigrid在IE8下显示不正确的问题?
我按照flexigrid网站上的三个例子中的第一个写了一个demo,但是在IE8下不正常第一行表头显示有问题 而其他所有浏览器都是好的
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title></title> <link rel="stylesheet" type="text/css" href="./css/flexigrid.pack.css" /> <script type="text/javascript" src="jquery-1.7.1.min.js"></script> <script type="text/javascript" src="./js/flexigrid.js"></script> </head> <body> <table class="flexme1"> <thead> <tr> <th width="100">Col 1</th> <th width="100">Col 2</th> <th width="100">Col 3 is a long header name</th> <th width="300">Col 4</th> </tr> </thead> <tbody> <tr> <td>This is data 1 with overflowing content</td> <td>This is data 2</td> <td>This is data 3</td> <td>This is data 4</td> </tr> <tr> <td>This is data 1</td> <td>This is data 2</td> <td>This is data 3</td> <td>This is data 4</td> </tr> <tr> <td>This is data 1</td> <td>This is data 2</td> <td>This is data 3</td> <td>This is data 4</td> </tr> </tbody> </table> </body> </html> <script language="JavaScript"> $('.flexme1').flexigrid(); </script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试了下,这个也可以
楼上的大侠 css我不熟 如何重载?
样式问题吧,查下样式表,重载呗。。。
问题解决了 将
改为
即可