好了,所以我不能看到什麼了這一點,我有兩個divs
CSS媒體queriesto隱藏或顯示內容
HTML
<div id="desktop-content">
desktop
</div>
<div id="mobile-content">
mobile
</div>
每個人都應該,如果手機屏幕上打印移動和隱藏桌面另一個在桌面上展示,但隱藏在手機上。
這裏是我的查詢
@media screen and (min-width: 0px) and (max-width: 200px) {
#mobile-content { display: block; } /* show it on small screens */
}
@media screen and (min-width: 201px) and (max-width: 1024px) {
#mobile-content { display: none; } /* hide it elsewhere */
}
@media screen and (min-width: 0px) and (max-width: 200px) {
#desktop-content { display: none; } /* hide it on small screens */
}
@media screen and (min-width: 201px) and (max-width: 1024px) {
#desktop-content { display: block; } /* show it elsewhere */
}
看起來很簡單,除了桌面打印時移動應該和桌面上的所有打印。
即時通訊媒體查詢,如果有人可以指出我的方式錯誤,我將不勝感激。
您的代碼有效。看小提琴。 https://jsfiddle.net/3q0mukLy/ – gwar9
嗯,我認爲它應該。其他地方一定是個問題。謝謝 – Beep