I am trying to understand that what kind of CSS inside the html class="ie.".
これらのスタイルシートにCSS 要素が使用されている場合、これらのステートメント用のCSSファイルはありますか?ここでは、条件付きCSSを見つけることができます。
<!--[if lt IE 7 ]> <html class="ie6"><![endif]-->
<!--[if IE 7 ]> <html class="ie7"><![endif]-->
<!--[if IE 8 ]> <html class="ie8"><![endif]-->
<!--[if IE 9 ]> <html class="ie9"><![endif]-->
これらは、ブラウザのバージョンを示すクラス名です。彼らは決して使用する必要はありません。それらは、CSSセレクタまたはJS経由で行うことができます。 – Xufox