I have three columns of text that I want positioned next to each other in a row. I used flex box to do this but when I shrink the browser to a certain point they just disappear instead of shrinking? I tried setting them to flex-shrink: 1; but it wasn't working either. Im fairly new to this so any help would be appreciated.
.flex-container{
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
height: 350px;
min-width: 0;
}
.flex-container div {
max-width: 200px;
min-width: 0;
font-size: 18px;
flex-shrink: 1;
}
<div class="flex-container">
<div class="reviews-text1">"about 1-2 sentences"
<p class="reviews-buyername1">-Name</p></div>
<div class="reviews-text2">"about 1-2 sentences"
<p class="reviews-buyername2">-Name</p></div>
<div class="reviews-text3">"about 1-2 sentences"
<p class="reviews-buyername3">-Name</p></div>
</div>