2013-12-13 77 views
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; 
} 
+1

你在哪裏測試此代碼? – Pinal

+0

http://newsinteractive.post-gazette.com/bootstrap2/prohibition/index4.html有關Droid Razr和Firefox的工具>網頁開發人員擴展>調整大小>查看響應式佈局 – LauraNMS

回答

1

它的工作原理(simplified test)。只是你沒有告訴它當方向改變時它應該改變background的元素。

你可能意味着有類似:

@media all and (orientation: portrait) { 
    #first { 
     background: url('images/Mobile_Art.jpg') no-repeat center; 
    } 
} 

代替:

@media all and (orientation:portrait) { 
    background: url('images/Mobile_Art.jpg') no-repeat center; 
} 
+0

哦,我現在覺得很愚蠢!非常感謝你 :)。 – LauraNMS