Below is an example of sticky navigation with simple script which is compatible with internet explorer.
You can use this script for sticky header or sticky footer.
section{width: 900px;margin: 0 auto}
footer , header{height: 120px;background-color: #ccc}
main{height: 900px}
nav{background-color: #333;}
nav ul{background-color: #e5e5e5;list-style: none;}
nav ul li{display: inline-block;}
nav ul li a{color: red;}
.sticky{position: fixed;top:0px;width:900px}
0 Comment(s)