.fm-bubbles {
display: flex;
flex-wrap: wrap;
width: 100%;
height: 100px;
}
.fm-bubble {
flex: 1 1 10%;
height: max-content;
border: 1px solid royalblue;
border-radius: 5px;
}
<div class="fm-content">
<div class="fm-bubbles">
<p class="fm-bubble">Lorem, ipsum.</p>
<p class="fm-bubble">lorem</p>
<p class="fm-bubble">adsadad</p>
<p class="fm-bubble">sss</p>
<p class="fm-bubble">asdasda asdasda</p>
<p class="fm-bubble">asss</p>
<p class="fm-bubble">sss</p>
<p class="fm-bubble">asdas asd</p>
<p class="fm-bubble">adadaddd</p>
<p class="fm-bubble">adadasd</p>
<p class="fm-bubble">addd</p>
<p class="fm-bubble">adadd</p>
<p class="fm-bubble">ss</p>
</div>
At the moment my boxes are only touching each other horizontally, but i also want them to be touching vertically. I have tried to search for information about this, but when I do find something that works, it gives them more height than they need.