IE8 css selector

后端 未结 14 1938
臣服心动
臣服心动 2020-11-30 22:44

To target elements only in IE browsers i\'ll use

IE6:

* html #nav li ul {
    left: -39px !important;
    border: 1px solid red;
}

14条回答
  •  猫巷女王i
    2020-11-30 23:17

    \9 doesn’t work with font-family, instead you’d need to use “\0/ !important” as Chris mentioned above, for example:

    p { font-family: Arial \0/ !important; }
    

提交回复
热议问题