我最近發現媒體查詢是一個工具,所以沒有太多的經驗(真的秒秒)。 我有一個#logo,使用寬度的7%的餘裕,但將其更改爲25px的規則由於某些原因而不起作用。有趣的是,特定媒體查詢的其餘部分工作正常,只是一個標識沒有。可能是什麼問題呢?爲什麼沒有應用媒體查詢規則之一?
@media (max-width: 1320px) and (min-width: 105.1px){
#wrapper {
width: 100%;
}
#logo {
width: 195px;
height: 96px;
position: relative;
max-width: 230px;
max-height: 110px;
min-width: 115px;
min-height: 96px;
border: thin solid #000000;
float: left;
margin-left: 25px;
margin-top: -1px;
background-repeat: no-repeat;
background: black;
}
}
#logo {
width: 195px;
height: 96px;
position: relative;
max-width: 230px;
max-height: 110px;
min-width: 115px;
min-height: 96px;
border: thin solid #000000;
float: left;
margin-left: 7%;
margin-top: -1px;
background-repeat: no-repeat;
background: black;
}
它可能你有一個css規則,它會在你的查詢後重寫它的某處。其中也可能有一個重要的標誌。 – Jeff 2015-01-31 19:19:48
請至少添加您的相關css代碼 – 2015-01-31 19:20:15
沒有任何重要的標記。對,讓我想辦法在這裏發佈代碼)) – Tony 2015-01-31 19:24:47