Need to get rounded corners on table elements, in this case td-tags in IE8 with JavaScript/jQuery. Not images.
需要在表元素上使用圆角,在本例中使用JavaScript / jQuery在IE8中使用td-tags。不是图像。
Have tried different solutions. CSS3 Pie only seem to work on div-tags. Also tested Curvy Corners and jQuery.corner.
尝试过不同的解决方案CSS3 Pie似乎只适用于div-tags。还测试了Curvy Corners和jQuery.corner。
Is this possible?
这可能吗?
1 个解决方案
#1
2
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中做到这一点,不能用JavaScript做,
上的方式非常不同(如何折叠表现?曲线的方式是什么?)。 |
IE8 just doesn't support what you want here...you could use images, but then your markup will increase heavily.
IE8只是不支持你想要的东西......你可以使用图像,但随后你的标记会大量增加。
#1
2
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中做到这一点,不能用JavaScript做,
上的方式非常不同(如何折叠表现?曲线的方式是什么?)。 |
IE8 just doesn't support what you want here...you could use images, but then your markup will increase heavily.
IE8只是不支持你想要的东西......你可以使用图像,但随后你的标记会大量增加。