<!--[if lt IE 7 ]><html class=“ie ie6” lang=“en”> <![endif]-->

前端 未结 4 1309
孤街浪徒
孤街浪徒 2021-01-05 05:44
  1. What does this and other similar IE code lines mean in an HTML5 do

4条回答
  •  借酒劲吻你
    2021-01-05 06:05

    1) It means if you have Internet Explorer version 7 and below, include this class inside the html tag

    2) Yes, you can have css like this:

    html.ie.ie6 .someClass {
     color: red;
    }
    

    This will only get applied if IE is version 7 and below

    3) You can do that too. Sometimes you need to combine both

    4) N/A

提交回复
热议问题