我想知道如何让我网站上的导航栏保持静态?以下是我对我网站的编码。
#footer{
list-style:none inside none;
margin:0;
padding:0;
position:fixed;
right:0;
bottom:0;
left:0;
height:30px;
opacity:0.7;
background-color:#1f1f1f;
font-size:0;
}
答案 0 :(得分:1)
您没有共享导航栏的代码,您共享了页脚的CSS。
以下是我认为您的目标: http://codepen.io/anon/pen/JEvxBq
#Navagationbar {
position:fixed !important;
z-index: 9999;
}