css div went over top menu

Solutions on MaxInterview for css div went over top menu by the best coders in the world

showing results for - "css div went over top menu"
Elisa
06 May 2019
1#navbar {
2  background-color:#990000;
3  position:fixed;  
4  z-index:1; /*Add this*/
5  width:100%;
6  height:50px;
7  text-align:center;
8  vertical-align:middle;
9  line-height:50px;
10  top:0px;
11}