1
The menu should be fixed and so I used the position: fixed;
. When I use the margin: auto
, that is to centralize a div
, doesn’t work...
#menubarra {
position: fixed;
height: 50px;
width: 80%;
background-color: #cccccc;
border-radius: 5px;
}
<div id="menubarra"></div>