TransWikia.com

Como centralizar um menu (div) fixo?

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>

One Answer

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

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP