通过 CSS 在四周添加空白来显示 flex 线条
使用 align-content 属性,值为 space-around ,以在 flex 线条周围添加空白。
你可以尝试运行以下代码来实现space-around 值
实例
<!DOCTYPE html> <html> <head> <style> .mycontainer { display: flex; height: 200px; background-color: #884EA0; align-content: space-around; flex-wrap: wrap; } .mycontainer > div { background-color: #00FF00; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } </style> </head> <body> <h1>Queue</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> </body> </html>
广告