My project screenshot is displayed below. The red line separates the current state from the desired outcome. I am struggling to make it fullscreen, meaning it should extend all the way to the corners. Despite trying various methods with Bootstrap 4, I have been unsuccessful. Here is the image:
https://i.sstatic.net/ilhP8.jpg
The code for this build is quite simple, as shown below.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous">
<div class="row">
<div class="col-md-12" id="page1">
<div class="list-group">
<a href="bericht.html" class="list-group-item list-group-item-action flex-column align-items-start">
<div class="col-md-2">
<img src="https://www.jennybeaumont.com/wp-content/uploads/2015/03/placeholder-800x423.gif" alt="" style="width: 100%">
</div>
<div class="col-md-6">
<h6 class="mb-1">Bootstrap element out of alignment</h6>
<p class="mb-1" style="font-size: 14px">Donec id elit non mi porta gravida at eget metus. Maecenas...</p>
<small class="float-right text-muted">25 minuten geleden door Henk</small>
</div>
<div class="col-md-2">
<h6 class="text-center">Reacties</h6>
<p class="text-center">57</p>
</div>
<div class="col-md-2">
<h6 class="text-center">Weergaven</h6>
<p class="text-center">2.543</p>
</div>
</a>
</div>
</div>
</div>
I appreciate any assistance you can provide.