我正在研究一个具有动态菜单的主题,当我们滚动该主题时会隐藏它。我想像w3school网站一样将其修复在顶部。任何想法? 使用像Sticky menu
这样的插件是一个不错的选择这是网站链接 https://spaceunlimited.in/
CSS
.ehf-header #masthead {
z-index: 30;
position: relative;
}
答案 0 :(得分:1)
添加此CSS
.ehf-header .headroom--unpinned{
position:fixed !important;
top:0px;
}
答案 1 :(得分:1)
将以下内容用于masthead
时,可以将棕色边框留在侧面。
#masthead {
z-index: 30;
position: fixed;
background: whitesmoke;
top: 0;
left: 20px;
max-width: calc(100% - 40px);
}