【发布时间】:2013-02-21 13:49:40
【问题描述】:
我只想在 Ie9 中显示大文本。我的页面中使用了很多 div 和 span。我不能为每个 div 写一个 css 行。
我想写一个 CSS 应用到整个页面。我只想在 IE9 上应用它。
*{
font-size:120%;
}
【问题讨论】:
标签: css text internet-explorer-9 font-size
我只想在 Ie9 中显示大文本。我的页面中使用了很多 div 和 span。我不能为每个 div 写一个 css 行。
我想写一个 CSS 应用到整个页面。我只想在 IE9 上应用它。
*{
font-size:120%;
}
【问题讨论】:
标签: css text internet-explorer-9 font-size
我同意 Ben Lee 的观点,这是你应该用条件语句做的事情。
<!--[if IE 9]>
<style type="text/css">
*{
font-size:120%;
}
</style>
<![endif]-->
【讨论】: