使用值為 center 的 justify-content 屬性將彈性項目對齊到中心。
示例
您可以嘗試運行以下代碼來實現(xiàn)中心值
現(xiàn)場演示
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; background-color: red; justify-content: center; } .mycontainer > div { background-color: #F1C40F; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } </style> </head> <body> <h1>Quiz</h1> <div class = "mycontainer"> <div>Q1</div> <div>Q2</div> <div>Q3</div> <div>Q4</div> </div> </body> </html>
登錄后復(fù)制
以上就是使用CSS將flex項目對齊到容器的中心的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!