Thank you for taking the time to read this :)
I am trying to create a layout where articles are displayed one below the other in card style, but I am struggling to find a solution to my problem.
I have experimented with z-index, absolute and relative positioning, clear:both, float, etc., but so far, I haven't been able to achieve the desired result.
Here is an example image of what I am trying to achieve:
And here is the end result that I am aiming for:
I have looked into the code as well, but it seems too complex for me to figure out on my own.
Below is a snippet of the relevant HTML/CSS code:
[CSS code goes here]
<link href="[Bootstrap CSS link]" rel="stylesheet"/>
<div class="container-fluid suite">
<div class="row row-margin">
[HTML code for article cards]
</div>
</div>
I hope to achieve the layout where each card is stacked neatly below the other, similar to the example image provided. I would like to apply this layout to additional articles as shown in the reference link. Additionally, if possible, I would appreciate a responsive design solution for all the cards.
Thank you in advance for any assistance you can provide.