1
我的肖像方向媒體查詢似乎不起作用。任何想法,我做錯了,請?肖像方向的媒體查詢似乎不起作用
HTML:
<div class="titleCard" id="first" style="background-color:white"></div>
CSS:
html, body { -webkit-backface-visibility:hidden;}
#first {
background-color: #000;
width: 100%; max-width: 1920px;
height: 100%; max-height: 1080px;
background: url('images/bg.png') no-repeat center;
background-size:cover;
position:relative;
}
.bgwidth { width: 100%; max-width: 1920px; }
.bgheight { height: 100%; max-height: 1080px; }
@media all and (orientation:portrait) {
background: url('images/Mobile_Art.jpg') no-repeat center;
}
你在哪裏測試此代碼? – Pinal
http://newsinteractive.post-gazette.com/bootstrap2/prohibition/index4.html有關Droid Razr和Firefox的工具>網頁開發人員擴展>調整大小>查看響應式佈局 – LauraNMS