私の目標は、メディアクエリを使用して特定のブラウザサイズで背景画像を変更することです....要素スタイルもオーバーライドする必要があるため、 background-image タグの直後に !important が必要です...
これがこれまでの..
@media only screen and (min-width : 690px) and (max-width : 1000px) {
#featured article[data-background-cover="1"] {
background-image: url('#')!important;
}
}
上記のコードは機能しているようですが、背景画像を繰り返す必要があります... !important.
私はいくつかの方法を試しましたが、うまくいかないようです..のように
@media only screen and (min-width : 690px) and (max-width : 1000px) {
#featured article[data-background-cover="1"] {
background-image: url('#')repeat!important;
}
}
と
@media only screen and (min-width : 690px) and (max-width : 1000px) {
#featured article[data-background-cover="1"] {
background-image: url('#')!important repeat;
}
}
どんな助けでも大歓迎です..ありがとう