我已经用 css 和 div 构建了一个 html 布局。我有名为 top(这是标题)、left(链接用于页面)和 center(用于显示图像)的 div。
当我单击链接以在左侧显示图像时,我可能会得到比浏览器窗口大的图像,我需要在其中滚动。我可以滚动,但图像会越过顶部看不到我的标题的部分。我想做的是,顶部总是在浏览器窗口上。当我在中心滚动图像时,如果它们超出我的顶部 div,我喜欢隐藏穿过顶部 div 的部分。有没有办法在css中做到这一点?
#top {
height: 300px;
width: 100%;
position: fixed;
}
#left {
padding:0;
border: 0;
width: 350px;
overflow: scroll;
float: left;
position: fixed;
top: 5px;
bottom:0px;
min-height:950px;
}
#center1 {
margin-left:352px;
padding:0;
border: 0;
float: left;
position:static;
overflow: hidden;
display: block;
}