Home >Web Front-end >JS Tutorial >Navigation fixed effect implemented by jquery_jquery
Navigation fixed effect implemented by jquery
2.CSS code
.fixedNav{
position:fixed;
top:0px;
left:0px;
width:100%;
z-index:100000 ;
_position:absolute;
_top:expression(eval(document.documentElement.scrollTop));
}
3.HTML code