不知道爲什麼這不起作用。有任何想法嗎?媒體查詢看起來不起作用
當屏幕低於700px時,背景顏色不會改變,並且HeaderImg仍在顯示。
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<style>
#content {
text-align:center;
width:100%;
margin:0;
padding:0;
}
img{
height:auto;
width: 100%;
}
@media only screen and (max-width: 700px) {
#content{
background-color:#000;
}
#HeaderImg{
display:none;
}
}
@media only screen and (max-width: 1920px) {
#HeaderImg{
display:inline;
}
}
</style>
</head>
<div id="content">
<img id="HeaderImg" src="LargeBanner_1920x300.png" width="600px" height="300px;" />
</div>
你能解釋 「不工作」 請。 – 2014-12-01 19:14:49
你是什麼意思的「不工作」?預期的行爲是什麼,你看到了什麼?你可以創建一個代碼片段或小提琴來說明你的問題嗎?有830+的代表點,我不認爲這是很多要求 - 你應該熟悉關於SO的規則。 – Terry 2014-12-01 19:15:10
謝謝Terry,你的明智話將會被考慮到。 – Avien 2014-12-01 19:28:39