Can anyone help me figure out how to achieve the layout shown in the image below? I've been experimenting with flexbox, floating elements, and various other techniques, but nothing seems to be working for me.
You can view an example of the desired outcome here.
Here is the code snippet I have been working on:
ul {
list-style-type: none;
}
.inspiration-list-container {
display: flex;
flex-wrap: wrap;
margin: 0 -16px;
}
(inspiration-list-container li {
width: 50%;
padding: 0 8px 16px;
}
/* Remaining CSS code snippets here */
I am currently using Bootstrap and Flexbox to try and implement this design, but I seem to be at a standstill. Any assistance would be greatly appreciated. Thank you so much!