How to center text with logo in the middle of it in navbar bulma

后端 未结 3 1805
抹茶落季
抹茶落季 2021-01-07 06:09

I\'m trying to center text inside navbar with the logo being in between navbar items, however, I was only able to center logo as brand image.

Here\'s my code:

3条回答
  •  爱一瞬间的悲伤
    2021-01-07 06:37

    Try using the flex property. To the container div you can give

    • home
    • About
    • link
    • link
    .flexcontainer{ display:flex; } .flexcontainer ul{ display:flex; list-style:none; flex-flow: row wrap; align-items: center; }

    check this https://jsfiddle.net/karantewari/bqh9byj3/ , hope it helps :)

提交回复
热议问题