上的圆角在 Explorer 8 中使用 jQuery?
需要在表格元素上获得圆角,在本例中是使用 JavaScript/jQuery 的 IE8 中的 td 标签。不是图像。
尝试过不同的解决方案。 CSS3 Pie 似乎只适用于 div 标签。还测试了 Curvy Corners 和 jQuery.corner。
这可能吗?
Need to get rounded corners on table elements, in this case td-tags in IE8 with JavaScript/jQuery. Not images.
Have tried different solutions. CSS3 Pie only seem to work on div-tags. Also tested Curvy Corners and jQuery.corner.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能在 IE8 中执行此操作,不能使用 JavaScript,边框在
元素上的工作方式与开始时略有不同,并且在
IE8 只是不支持你想要的东西......你可以使用图像,但这样你的标记会大大增加。
You can't do this in IE8, not with JavaScript, the way borders work on
<table>
elements is slightly different to begin with, and very different on<td>
(how would collapsing behave? which way is the curve?).IE8 just doesn't support what you want here...you could use images, but then your markup will increase heavily.