我有一張圖像,我需要它水平滾動(由於響應菜單向左移動內容) 並垂直固定(徽標始終垂直固定)。
鎖定垂直滾動
我想鎖定垂直滾動,但讓滾動水平工作。
我想是這樣的,
vertical.position:fixed
horizontal.position:relative
但如果這是不可能的,我想知道是否有可能使Ø爲徽標範圍框。
我已經嘗試過的溢出和立場...
謝謝
HTML
<div class="site-wrap">
<div id="bar">
<div id="baar">
<img src="images/logo2.png" alt="logo2" width="124" height="56" />
</div>
</div>
</div>
CSS
#bar {
height: 88px;
width: 100%;
position: relative;
top: 0;
left: auto;
z-index:2;
float: right;
}
#baar {
height: 56px;
width: 100%;
background: linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background: -moz-linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background: -webkit-linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background-image: -ms-linear-gradient(top left, #e3e3e3 0%, #f9f9f9 100%);
background-image: -o-linear-gradient(top left, #e3e3e3 0%, #f9f9f9 100%);
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #f9f9f9), color-stop(1, #e3e3e3));
background-image: linear-gradient(to bottom right, #e3e3e3 0%, #f9f9f9 100%);
box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.15);
position: relative;
overflow-y: inherit;
left: auto;
text-align: center;
margin-top: 16px;
top:0;
}
.site-wrap {
min-width: 100%;
min-height: 100%;
background-image: url(images/pat3.png), url(images/pat.gif);
background-size: 100% 100%, auto;
position: relative;
top: -18;
bottom: 100%;
left: 0;
z-index: 1;
}
你能給我們一個jsfiddle鏈接的代碼嗎? –
請在您的問題中添加代碼 – Harsh
這是很多代碼...但我會添加容器和酒吧分區...等待第二個 –