在Mozilla Firefox中自定义网页的CSS

时间:2012-12-15 17:40:30

标签: css firefox web customization

我想自定义网站的css并保存以供加载Mozilla。因此,当Mozilla从该URL加载html时,它使用我的css文件而不是外部文件。 我不知道如何让Mozilla这样做,当我向网址发出新请求时,网站的css被加载而不是我的。 我该如何设置?

3 个答案:

答案 0 :(得分:1)

为此

您可以扫描用户代理并找出其版本的浏览器。包括操作系统特定样式的操作系统 您可以为特定浏览器使用各种CSS Hacks 或者脚本或插件来识别浏览器并将各种类应用于元素

使用jQuery

您所追求的是浏览器检测:

if ($.browser.mozilla) { ... 

然而,不鼓励浏览器嗅探,因为它很容易欺骗用户代理,即伪装成另一个浏览器!

您最好以自己的方式或通过jQuery.support接口使用功能检测:http://api.jquery.com/jQuery.support/

这是一篇关于扩展它以供自己使用的文章:http://www.waytoocrowded.com/2009/03/14/jquery-supportminheight/

使用PHP

http://php.net/manual/en/function.get-browser.php
http://techpatterns.com/downloads/php-browser-detection-basic.php
http://techpatterns.com/downloads/php_browser_detection.php (contains JS also)

然后根据检测到的浏览器创建动态CSS文件 这是一个CSS Hacks列表

选择器黑客

/* IE6 and below */
* html #uno  { color: red }

/* IE7 */
*:first-child+html #dos { color: red } 

/* IE7, FF, Saf, Opera  */
html>body #tres { color: red }

/* IE8, FF, Saf, Opera (Everything but IE 6,7) */
html>/**/body #cuatro { color: red }

/* Opera 9.27 and below, safari 2 */
html:first-child #cinco { color: red }

/* Safari 2-3 */
html[xmlns*=""] body:last-child #seis { color: red }

/* safari 3+, chrome 1+, opera9+, ff 3.5+ */
body:nth-of-type(1) #siete { color: red }

/* safari 3+, chrome 1+, opera9+, ff 3.5+ */
body:first-of-type #ocho {  color: red }

/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
 #diez  { color: red  }
}

/* iPhone / mobile webkit */
@media screen and (max-device-width: 480px) {
 #veintiseis { color: red  }
}


/* Safari 2 - 3.1 */
html[xmlns*=""]:root #trece  { color: red  }

/* Safari 2 - 3.1, Opera 9.25 */
*|html[xmlns*=""] #catorce { color: red  }

/* Everything but IE6-8 */
:root *> #quince { color: red  }

/* IE7 */
*+html #dieciocho {  color: red }

/* Firefox only. 1+ */
#veinticuatro,  x:-moz-any-link  { color: red }

/* Firefox 3.0+ */
#veinticinco,  x:-moz-any-link, x:default  { color: red  }



/***** Attribute Hacks ******/

/* IE6 */
#once { _color: blue }

/* IE6, IE7 */
#doce { *color: blue; /* or #color: blue */ }

/* Everything but IE6 */
#diecisiete { color/**/: blue }

/* IE6, IE7, IE8 */
#diecinueve { color: blue\9; }

/* IE7, IE8 */
#veinte { color/*\**/: blue\9; }

/* IE6, IE7 -- acts as an !important */
#veintesiete { color: blue !ie; } /* string after ! can be anything */

来源:http://paulirish.com/2009/browser-specific-css-hacks/

如果你想使用插件,那么这里就是一个

http://rafael.adm.br/css_browser_selector/

答案 1 :(得分:1)

对于我们大多数人来说,最直接的方法是使用名为Stylish的Mozilla Firefox插件。它允许您为特定页面或域编写,保存和使用自己的样式表,覆盖(如果需要)作者自己的规则部分。

引擎盖下它不仅仅是内置的Firefox设施 - 你有userContent.css文件,使用CSS自己支持的@document语法和!important规则后,完全了解你所追求的目标。

这实际上是CSS的核心。它或多或少地被设计为允许用户覆盖作者样式表,而Firefox使得它更容易实现。

您可以获得更广泛的解释here

答案 2 :(得分:0)