在Bootstrap中我会写
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<div class=row>
<div class="col-md-4">content</div>
<div class="col-md-4">content</div>
<div class="col-md-4">content</div>
</div>
我尝试用柔性聚合物做同样的事情,但我没有找到办法做到这一点..
如何在聚合物内部使用自举?
答案 0 :(得分:1)
Here是一个帮助我更多了解Flex布局如何工作的示例。我想你必须使用如下内容:
<div class="horizontal layout">
<div class="flex-4"><p>flex three</p></div>
<div class="flex-4"><p>flex</p></div>
<div class="flex-4"><p>flex two</p></div>
</div>