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.
@media screenと@-moz-documentルールを一緒にどのように使用しますか。特定の幅のFirefoxでのみ表示するルールを設定しようとしています。
@media screen
@-moz-document
これを試して
@media screen and (min-width : 500px){ div { color: green; } // div color green default @-moz-document regexp('http:.*'){ div { color:red; } // red in FF/Gecko } }
デモなどはこちら。