我目前有一個網站與橫向導向的圖像(在下面的代碼中的地圖圖像)上;一個簡單的登陸頁面。該網站將作出響應,所以我目前的圖像爲height: 100%
,因此它總是填滿瀏覽器窗口。我設置了width: auto
,以保持比例,但圖像落在了屏幕上。試圖做一個overflow:scroll
不會做任何事情,我無法水平滾動,使我的形象切斷。這裏是我的標記和樣式(在薩斯):水平滾動溢出圖像 - HTML/CSS
<div class="container">
<img id="map" src="rvagetsit_map_edit.png" alt="RVA Gets I.T."/>
<div class="logo">
<img id="logo" src="rvagetsitlogo.png" alt="RVA Gets I.T."/>
</div>
body {
min-height: 100%;
position: fixed;
overflow: scroll;
.container {
height: 100%;
overflow-x: auto;
#map {
position: fixed;
width: auto;
height: 100%;
display: block;
overflow: scroll;
}
正如你所看到的,我試過在少數情況下使用溢出,但沒有奏效。基本上,我只想讓高度填充瀏覽器窗口,但能夠水平滾動以查看圖像的其餘部分。
在此先感謝。
讓你的css語法先排序。記得關閉大括號'body {}'[link](http://www.w3schools.com/css/css_syntax.asp) – Dafmeister