/** 全てのブラウザに対する指定 **/
#navi {
color: #000000;
}
/** safari用のCSS hack **/
/* safari only \*/
html:\66irst-child #navi {
color: #333333;
}
/* end */
★ポイント
全てのブラウザに対する指定をした後に
/* XXX \*/でコメントアウトし、html:\66irst-childをつける事で、
safariにのみ#naviに対してcolor: #333333;が適用されます。
★Firefox専用での指定は出来ないと思いますが、Firefoxを標準ブラウザとして
CSS指定をして、その後で特定ブラウザに個別指定すれば対応できます。
★参考サイト
http://easygoing.under.jp/tips/index4.shtml
http://www.communis.co.uk/dithered/css_filters/css_only/index.ht...
http://www.centricle.com/ref/css/filters/
コメント(0件)