本文介绍了浏览器特定的CSS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想用我的网站上的字体这在Firefox看起来很大,但在Chrome和IE破碎。现在,为了避免这个问题,我想改变字体家族只有Chrome和IE浏览器。还有就是[如果IE]语句IE的支持,但有一个浏览器(以及可能更多的浏览器),也?
I want to use fonts on my website which look great in Firefox, but broken up on Chrome and IE. Now to avoid this issue I wanted to change the font family for only Chrome and IE. There is the [if IE] statement for IE support, but is there one for Chrome (and possibly more browsers), too?
推荐答案
可用的标志是:
- 项目
- 的WebKit(对于jQuery 1.4)
- 野生动物园(德precated)
- 歌剧
- MSIE
- Mozilla浏览器
使用示例:
if ($.browser.webkit) {
alert( "Set up your font css" );
}
这篇关于浏览器特定的CSS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!