PHPLucidFrame中添加IE条件语句的最佳模板位置是什么?

时间:2015-02-10 03:03:32

标签: php html css internet-explorer phplucidframe

我想知道PHPLucidFrame中最好的模板位置,为IE特定的样式添加IE条件语句。我知道我可以在每个index.php中添加它们,但这将是多余的。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

您不需要显式添加它们,因为PHPLucidFrame会自动为IE <html>标记添加两个CSS类,例如ie ieX,其中X是您当前的IE版本观看。所以,你可以在CSS文件中使用这些类。

.ie { /* for all IE */
}

.ie7 { /* for IE7 */
}

.ie8 { /* for IE8 */
}

.ie9{ /* for IE9 */
}

如果您不想遵循这种方式,最好使用的模板是/inc/tpl/head.php。将其复制到/app/inc/tpl/并使用IE条件语句更新/app/inc/tpl/head.php。它会自动在所有页面中提供