我怎样才能在布尔玛上标记这个?我正在尝试使用下面的代码,但我需要限制第一列里面只有 2 个框,然后它会从左到右向下。在 Bootstrap 中,这很容易,但在 Bulma 中,它将嵌套列压缩在一行中。
<div class="tile is-ancestor">
<div class="tile is-4 is-vertical is-parent">
<div class="tile is-child box">
<p class="title">One</p>
</div>
<div class="tile is-child box">
<p class="title">Two</p>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box">
<p class="title">Three</p>
</div>
</div>