我的目標是改變使用媒體查詢在某些瀏覽器大小的背景圖像.... 我需要它重寫元素樣式,所以我需要有!重要的權利我的背景圖像標記後...背景圖片重複!!重要的正確的css代碼
這是迄今爲止..
@media only screen and (min-width : 690px) and (max-width : 1000px) {
#featured article[data-background-cover="1"] {
background-image: url('#')!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;
}
}
任何幫助,將不勝感激..謝謝
將是一件好事知道:http://www.w3fools.com/ – vitozev
不是一切從W3Schools的是錯誤的;) –