Hi, I am attempting to design a user card-type div that includes images on the left and the username on the right. I have managed to create the layout, but when zooming in, the text is overflowing and escaping the flex container. Here is my code snippet. You can view the output here (try zooming in with ctrl +)
<div style="
border: 1px solid #775CD0;
display:flex;
width:20%;
border-radius:4px;
">
<img src="https://picsum.photos/200/300
" height="30" width="30" style="
align-self:start;
margin-left:10px;
padding-top:2px;
padding-bottom:2px;
">
<img src="https://picsum.photos/200/300/?random
" class="image2" height="18px" width="18px" style="
align-self:start;
margin-top:18px;
margin-left:-15px;
">
<span class="account-name" style="
margin-top:6px;
padding-left:22px;
">
JohnDoe
</span>
</div>