https://i.sstatic.net/P95ad.png
My current code is causing some issues and not displaying as desired. I have included a sample of my code below:
<style>
.red{
background-color: red;
}
</style>
{% endblock stylesheets %}
{% block content %}
<div class="container-flex m-3">
.... // More code here
I am trying to achieve a specific layout with cards containing titles, text, and icons. However, the length of the text varies which is affecting the alignment in my grid.
I need help adjusting the height of each element responsively and creating this grid to span the full page height using Bootstrap. What changes should I make to my code to achieve the layout shown in the image?