首页 > 问答 > 正文
我给元素设置justify-content:center能居中,但是加入 position: fixed;后元素为什么就不能居中呢?难道使用fixed后flex布局就不生效吗?
.v-stairs-nav { display: flex; position: fixed; justify-content: center; }
学习ing2017-06-12 09:22:46
position:fixed文档脱离标准流了,你加个width:100%可以解决此问题
position:fixed
width:100%