我的媒體查詢存在問題,因爲它並不是互相覆蓋。第一次迭代(max-width: 960px)
工作正常,但第二個(max-width: 380px)
不起作用,我不知道爲什麼。非常感謝幫助,謝謝。媒體查詢不互相覆蓋
.fb {
width: 50px;
margin-left: 20px;
margin-right: 20px;
}
@media only screen and (max-width: 960px) {
/* this works */
.fb {
position: relative;
width: 40px!important;
margin-left: 15px!important;
margin-right: 15px!important;
}
}
@media only screen and (max-width: 380px) {
/* this does not work */
.fb {
width: 30px!important;
margin-left: 10px!important;
margin-right: 10px!important;
}
}
<div class="social_container">
<a href="https://www.facebook.com/" target="_blank"><img class="fb" src= "http://placekitten.com/200/300" alt=""></a>
</div>
爲什麼'!important'?另外,您最後一條規則中有一個錯字:「margin-rigth」。什麼「不起作用」? – connexo
你可以發佈一個有效的小代碼片段與示例圖像嗎?我們無法調試我們無法看到的內容。 –
好的,只需一秒鐘。 –