0

モバイルやタブレットではフッターを 100% の幅で表示できないようですが、ブラウザーでは問題ありません。助けてください、ここに私のcssがあります:

    .footerbox {
@media only screen and (min-device-width : 768px); (max-device-width : 1024px);
float :left;
width:100%;
height:300px;
margin-left:0;
margin-right:0;
background-image:url(../images/aaheader12.jpg);
background-position:center bottom;
background-repeat : no-repeat;
font-family : Calibri;
font-size : 14px;
color : #000;
    }
4

2 に答える 2

0
@media only screen and (max-width: 1022px),
only screen and (min-device-width : 768px) and (max-device-width : 1024px),
only screen and (min-device-width : 320px) and (max-device-width : 568px),
only screen and (min-device-width : 320px) and (max-device-width : 480px){your css}

デバイスの幅が 1022px 未満の iPad、iPhone、モバイル デバイス、およびタブレットに対するこのクエリ。

于 2013-09-30T13:18:08.887 に答える