Struggling with implementing Bootstrap 4 CSS, particularly in achieving uniform height and vertical alignment for two jumbotron elements in a row.
Here is the code snippet:
<div class="container">
<div class="row">
<div class="col-8">
<div class="jumbotron greenback">
<h7>Welcome to the Project test Detail page</h7>
</div>
</div>
<div class="col-4">
<div class="jumbotron greenback">
<div class="inner-score">
<div class="score-title">
<h6>Team Score</h6>
</div>
<div class="score-value">
<h4>85</h4>
</div>
</div>
</div>
</div>
</div>
</div>
To view the issue and see the current implementation, please refer to this JSFiddle link. The jumbotrons are vertically aligned but do not have equal heights across the row.