我正在为HTML网站设置一个新菜单...问题是我无法位于DIV的中心,而现在它位于左侧。 https://antontechnologies.com/
我尝试了Making horizontal menu to the center of the div,但没有帮助
.flat-mega-menu {
margin: 0 auto; /* margin for align container center */
padding: 0;
position: relative;
z-index: 999;
font-size: 1em;
display: block;
/*max-width: 1280px; */ /* container max-width 1280px */
min-height: 60px;
width: 100%;
font-family: "nunito regular";
min-width: 180px;
}
菜单应位于页面中央,而不是左侧。
答案 0 :(得分:0)
答案 1 :(得分:0)
尝试使用flex属性:
ul.collapse {
justify-content: center;
display: flex;
}