Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想在 Ie9 中显示大文本。我的页面中使用了很多 div 和 span。我不能为每个 div 写一个 CSS 行。
我想写一个单一的 css 来应用在整个页面上。我只想在 IE9 上应用它。
*{ font-size:120%; }
我同意 Ben Lee 的观点,这是你应该用条件语句做的事情。
<!--[if IE 9]> <style type="text/css"> *{ font-size:120%; } </style> <![endif]-->