I am trying to place two cards among each other beside one larger card using the materialize framework.
The code I am currently using looks like this:
<div class="row">
<div class="col s6">
<div class="card-panel">
<div class="card-content">
<h5 class="blue-grey-text text-lighten-2">p1</h5>
</div>
</div>
</div>
<div class="col s6">
<div class="card-panel">
<div class="card-content">
<h5 class="blue-grey-text text-lighten-2">p3</h5>
</div>
</div>
</div>
<div class="col s6">
<div class="card-panel">
<div class="card-content">
<h5 class="blue-grey-text text-lighten-2">p2</h5>
</div>
</div>
</div>
</div>
And the result looks like this:
But I would like to place p1
and p2
directly beside p3
, so that the layout looks like this:
Is this somehow possible using materialize?