如何将菜单置于中心并删除文本之间的线条?

How to position menu in center and remove lines between text?

开始做个人论坛,想把menu整合到header中。我将 links 插入到模板中,但由于某种原因,菜单是右对齐的并且在 links 之间有一些行。如何将整个菜单居中,并删除每个 link 之间的线?可以看出问题here.

.menuwrap {
   border: none;
}

.majestic {
    display: flex;
    justify-content: center;
}

.majestic li a {
    border: none;
}

八大兵badaboom。我在这里写 border: none;,但如果您有权访问 CSS,只需删除其中已有的 border-leftborder-right 样式。