我想使用flexBox(没有媒体查询)来实现一个响应式网格的布局.网格中可以有可变数量的元素.每个物品应具有固定和相等的宽度.项目应该向左对齐.整个组应该具有相等的左右边距.
应该是这样的:
这是我如何尝试实现的:
<!DOCTYPE html> <html lang="en"> <head> <Meta charset="utf-8" /> <style> .container { display: flex; flex-wrap: wrap; justify-content: flex-start; margin: auto; } .item { height: 200px; width: 200px; background-color: purple; padding: 10px; margin: 10px; } </style> </head> <body> <div class="container"> <div class="item">Flex item 1</div> <div class="item">Flex item 2</div> <div class="item">Flex item 3</div> <div class="item">Flex item 4</div> <div class="item">Flex item 5</div> </div> </body> </html>
它没有工作:
我希望设置边距:容器上的auto将强制其宽度刚好足以适应每行中的最佳数量.
我知道我可以很容易地使用像Bootstrap或Foundations这样的框架,但是我想知道是否可以使用flexBox.
解决方法
你不能用flexBox开箱即可(至少我没有设法做到这一点).你可以尝试使用justify-content:center;但是这会让所有的诡计居中,你会得到如下的东西:
所以我设法找到的唯一解决方案是使用另一个父元素,并将其中的所有内容包装起来.
请参阅CodePen http://codepen.io/justd/pen/rOeMGZ
我相信你会找到适合你的东西,只是尝试结合不同的CSS技术.