Basically I want a card/tile Layout. I tried the Card-Columns examples of Bootstrap 4 and this is what came out:
<main role="main" class="container-fluid free">
<div class="card-columns">
<div class="card" style="width:60%;">
<div class="card-body">
<h5 class="card-title">Test1</h5>
<p class="card-text">test</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h5 class="card-title">Test2</h5>
</div>
</div>
</div>
</main><!-- /.container -->
Now i want to remove the space between the two Cards on the Page. Is this possible in Bootstrap via cards? It is very important that i can have a tile layout with custom card-widths.
Here is a link to a fiddle: JSFiddle Thanks in advance.