Stack Overflow em Português Asked by the witcher0 on January 2, 2022
O menu deve ser fixo e por isso usei o position: fixed;
. Quando uso o margin: auto
, que é para centralizar uma div
, não funciona…
#menubarra {
position: fixed;
height: 50px;
width: 80%;
background-color: #cccccc;
border-radius: 5px;
}
<div id="menubarra"></div>
Fixed
fica relativo ao viewport
, então vc tb tem que declarar um left
e right
para o elemento
#menubarra {
position: fixed;
height: 50px;
width: 80%;
background-color: #cccccc;
border-radius: 5px;
margin: auto;
left: 0;
right: 0;
}
<div id="menubarra"></div>
Answered by hugocsl on January 2, 2022
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP