标题中心的菜单

时间:2019-02-16 19:14:00

标签: html css

我正在为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;
}

菜单应位于页面中央,而不是左侧。

2 个答案:

答案 0 :(得分:0)

检查一下 enter image description here

如您所见,我将text-align:center添加到您的ul中,就这样:)

答案 1 :(得分:0)

尝试使用flex属性:

ul.collapse {
  justify-content: center;
  display: flex;
}