我給元素設(shè)置justify-content:center能居中,但是加入 position: fixed;后元素為什么就不能居中呢?難道使用fixed后flex布局就不生效嗎?
.v-stairs-nav {
display: flex;
position: fixed;
justify-content: center;
}
閉關(guān)修行中......
position:fixed
文檔脫離標(biāo)準(zhǔn)流了,你加個(gè)width:100%
可以解決此問題