2015-06-10 30 views
0

我在移動網頁CSS媒體查詢景觀 - 鍵盤問題

@media only screen and (orientation:landscape) 
{ 
    /* My landscape based CSS here */ 
} 

嘗試它的鍵盤上的開斷。

我試過後;

@media only screen and (min-aspect-ratio: 13/9) { 
/* Landscape */ 
} 

測試和工作;

Nexus 5上,
iPhone 4,
iPhone 6,
iPhone 6+,
三星注4,
三星S3,
三星S4,
三星S5,
但它仍然是在
Nexus 4上打開鍵盤時出現故障。

我找不到任何CSS的全球解決方案。任何幫助將非常appriciated。 感謝

回答

0

我沒有想出了和直接的答案,但開闢出來的Nexus 4

@media only screen and (width: 384px) and (height:233px) { 
    /*my landscape div sets out display:none on nexus 4*/ 
}