首頁 > 問答 > 主體
我為元素設定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%