覚書~。
chromeとoperaだけに効くスタイル
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
.box {
background-color: red;
}
}
firefoxだけに効くスタイル
@-moz-document url-prefix() {
.box {
background-color: red;
}
}
Go to list of users who liked
More than 5 years have passed since last update.
覚書~。
chromeとoperaだけに効くスタイル
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
.box {
background-color: red;
}
}
firefoxだけに効くスタイル
@-moz-document url-prefix() {
.box {
background-color: red;
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked