I am trying to make a layout where I have 2 parent tiles one is horizontal and takes up 8 columns and the other is vertical and takes up 4 columns. What I would like to do now is to have the child boxes in the parent horizontal tile, take each 50% of the width inside that parent tile. This is what I my code looks like:
<div class="container">
<div class="tile is-ancestor">
<div class="tile is-parent is-8">
<div v-for="article of latestNews" >
<div class="tile is-child box">
<div class="post-wrapper">
<span class="tag is-info">{{ article.tag }}</span>
<h4 class="title is-4">{{ article.title }}</h4>
<p>{{ main ? article.excerpt : article.created_at.date.substring(0, 10) }}</p>
</div>
</div>
</div>
</div>
<div class="tile is-vertical is-4">
<div v-for="article of mostReadNews" >
<media-object :article="article" :main="true"></media-object>
</div>
</div>
</div>
</div>
Now, it looks like this:
I have tried adding to child box is-6 class, but that didn't work, what should I do?
I guess markup might be a little messed up, try with this:
I added some ids just to give the elements a background-color and some dimensions, they're meant to be removed.
I hope it helps!