1
我正在嘗試使用display: none
,因此一個元素將顯示在較小的分辨率(或移動設備)上,但不顯示在較大屏幕尺寸的主css上。顯示:無 - 顯示在手機上,但不顯示在桌面上
我認爲這可能是合乎邏輯的,它不顯示,但我無法找出一種方法來解決這個問題。
footer {
display: none;
}
@media handheld and (max-width:480px),
screen and (max-device-width: 480px),
screen and (max-width: 600px)
{
footer {
background-color: #colour;
position:fixed;
bottom: 0;
left: 0;
right: 0;
}
}