search

Home  >  Q&A  >  body text

javascript - css3 flex centering problem

I can center the element by setting justify-content:center, but why can’t the element be centered after adding position: fixed;? Doesn’t the flex layout take effect after using fixed?

 .v-stairs-nav {
         
            display: flex;
            position: fixed;
            justify-content: center;
        }
阿神阿神2780 days ago573

reply all(1)I'll reply

  • 学习ing

    学习ing2017-06-12 09:22:46

    position:fixedThe document is out of standard flow. You can solve this problem by adding width:100%

    reply
    0
  • Cancelreply