I have tried changing the min-width, I have tried numerous changes with flex-shrink, and It wont condense down to the size of the flex container. I am using codepen.io on Microsoft edge browser. I did try opening on chrome to no avail.
.ArkStatues {
display: flex;
border-radius: 5px;
border: 10px solid black;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
min-width: 0;
}
#statue1 {
// border-radius:5px;
// border: 1px solid lightyellow;
min-width: 0;
}
#statue2 {
//border-radius:5px;
//border: 1px solid lightyellow;
min-width: 0
}
#statue3 {
//border-radius:5px;
// border: 1px solid lightyellow;
min-width: 0;
}
<div class="ArkStatues">
<div id="statue1">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/55/San_Domenico22.jpg" alt="St. Petronius" />
</div>
<div id="statue2">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6c/San_Domenico34.jpg" alt="St. Proclus" />
</div>
<div id="statue3">
<img src="https://upload.wikimedia.org/wikipedia/commons/9/94/Angel_by_Michelangelo_-_1.JPG
" alt="Marble Angel" />
</div>
</div>