使用值為 center 的 justify-content 屬性將彈性項目對齊到中心。
您可以嘗試執行以下程式碼來實作中心值
現場示範
<!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>
以上是使用CSS將flex項目對齊到容器的中心的詳細內容。更多資訊請關注PHP中文網其他相關文章!