要素が小さい解像度 (またはモバイル デバイス) に表示されるように使用しようとしています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;
}
}