CSS定位不在ie8中工作

时间:2013-06-17 15:32:52

标签: internet-explorer-8 css

以下是示例:http://jsfiddle.net/wvCnW/

我无法访问html,只能访问CSS。所以为了得到带有蓝色边框的红色框,我正在使用这个hacky解决方法:

form
    input:first-child
    + input
    + input
    + input
    + input
    + input
    + input
    + input
    + table
        tr:first-child
        + tr
            td{
                background-color:red !important;
                border:2px solid blue;
                height:132px;
                }

这适用于我检查的主要现代浏览器,但不适用于ie8。我不确定为什么因为ie8显然支持CSS 2.1

http://caniuse.com/#feat=css-sel2

0 个答案:

没有答案