使用 Bulma 创建一个 响应式列布局是非常简单的:
- 添加一个
Columns
容器 - 根据你的需要在其中添加多个
Column
元素
无论有多少列,他们的宽度将会 均分.
使用 Bulma 创建一个 响应式列布局是非常简单的:
Columns
容器Column
元素无论有多少列,他们的宽度将会 均分.
<Columns>
<Column>
<Notification Color="Color.Primary">First column</Notification>
</Column>
<Column>
<Notification Color="Color.Primary">Second column</Notification>
</Column>
<Column>
<Notification Color="Color.Primary">Third column</Notification>
</Column>
<Column>
<Notification Color="Color.Primary">Fourth column</Notification>
</Column>
</Columns>
文档