如何使这个css代码在IE浏览器中工作?显然,它只适用于ff、chrome和safari

如何使这个css代码在IE浏览器中工作?显然,它只适用于ff、chrome和safari,css,Css,有人能告诉我如何使这段代码在IE浏览器上工作吗?或者我的这段代码有一个替代程序吗 #stuff { opacity:0;filter:alpha(opacity=0);zoom:1 } #stats { background: url('http://image.jpg') no-repeat 110px 20px !important; } #stats h3 { pointer-events: none; cursor: default;} #stat-arrow {height: 0;

有人能告诉我如何使这段代码在IE浏览器上工作吗?或者我的这段代码有一个替代程序吗

#stuff { opacity:0;filter:alpha(opacity=0);zoom:1 }
#stats { background: url('http://image.jpg') no-repeat 110px 20px !important; }

#stats h3 { pointer-events: none; cursor: default;}

#stat-arrow {height: 0;}

#stats table tr:nth-last-child(2) {position:absolute !important; left: 10000px !important; }
#stats table tr:last-child {position:absolute !important; left:10000px !important; }

我指的是整个代码,而不仅仅是指针事件:nth-last-child2和:last-child2在IE<9中都不受支持。有其他的想法吗?没有。你要么给最后一个单独的类,要么依赖Javascript。