Firefox’un farklı versiyonları için hackler

Firefox’un tüm versiyonları için CSS Hackleri

/*Firefox'un tüm versiyonları */
#selector[id=selector] { color: red; }
/* Firefox'un tüm versiyonları */
@-moz-document url-prefix() { .selector { color: red; } }
/* Gecko (Firefox'u da kapsar) */
*>.selector { color: red; }

Firefox 1.5 ve daha yeni sürümleri için CSS Hackleri

/* Firefox 1.5 ve daha yeni sürümler */
.selector, x:-moz-any-link, x:only-child { color: red; }

Firefox 2 ve önceki sürümleri için CSS Hackleri

/* Firefox 2 ve önceki sürümler */
#selector[id=SELECTOR] { color: red; }
/* Firefox 2 ve önceki sürümler */
html>/**/body .selector, x:-moz-any-link { color: red; }

Firefox 3 için CSS Hackleri

/* Firefox 3 */
html>/**/body .selector, x:-moz-any-link, x:default { color: red; }

Kaynak

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>