Heim > Artikel > Web-Frontend > CSS-Flex-Wrap-Eigenschaft
使用 flex-wrap属性来设置flex项目是否换行。
您可以尝试运行以下代码来实现flex-wrap属性。这里的flex项目会换行
实时演示
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; background-color: orange; flex-wrap: wrap; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; 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>Q5</div> <div>Q6</div> <div>Q7</div> <div>Q8</div> <div>Q9</div> </div> </body> </html>
Das obige ist der detaillierte Inhalt vonCSS-Flex-Wrap-Eigenschaft. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!