mjr*_*mjr 2 html internet-explorer conditional-comments
基本上,我想知道这段代码是否合适,
<body id="some_id" <!--[if lt IE 7 ]>class="ie6"<![endif]--> >
</body>
Run Code Online (Sandbox Code Playgroud)
不可以.评论中不能包含HTML评论.尝试:
<!--[if gte IE 7]>--> <body id="some_id"> <!--<![endif]-->
<!--[if lt IE 7]> <body id="some_id" class="ie6"> <![endif]-->
Run Code Online (Sandbox Code Playgroud)