在我的网站上,knipknip.helenparkhurst.net / kapper是一个登录标题,但是如果我向下滚动菜单就可以了。但我希望标题位于所有内容之上,以便标题始终100%可见。我该如何解决这个问题?
答案 0 :(得分:1)
设置z-index:
#header {
background-color: #282828;
border-width: 0;
height: 10%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 99;
}
但是要小心,你放置z-index的元素总是需要一个位置,否则就无法工作