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;
}
学习ing2017-06-12 09:22:46
position:fixed
The document is out of standard flow. You can solve this problem by adding width:100%