1
因此,我正在製作一個移動的網絡應用程序,應該佔用100%的屏幕沒有滾動(在任何方向)。屏幕方向爲流體設計的多個平板電腦
我有固定位置的屏幕的不同區域。
html, body{
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
.site-header{
position: fixed;
top: 0px;
height: 10%;
background: red;
width: 100%;
}
.site-article{
position: fixed;
top: 10%;
bottom: 10%;
background: white;
width: 95%;
}
.site-footer{
position: fixed;
bottom: 0px;
height: 10%;
background: blue;
width: 100%;
}
.site-nav{
position: fixed;
top: 10%;
bottom: 10%;
right: 0px;
background: green;
width: 5%;
}
我知道有像下面
@media only screen and (orientation:portrait)
在那裏你可以切換縱向和橫向之間的取向CSS媒體查詢,但我想不出任何事物的兩個方向之間放因爲每個正確的寬度和高度都需要保持100%?
它正確顯示在我的iPad上,然後你改變方向和需要滾動(水平和垂直)。如果我保持方向並刷新頁面,它將加載正確位置的頁面。
有沒有辦法做到這一點使用CSS的媒體查詢或我會不得不潛水到一些JavaScript?我需要能夠支持多種移動設備,從android手機和平板電腦到ios手機和平板電腦。