Does anyone know how to avoid overflowing of long words in flex container?
.wrap{
display:flex;
overflow-wrap: break-word;
max-width:100%;
}
<div class="wrap">
<div class="a">
a
</div>
<div class="b">
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
</div>
</div>
I only found this thread Break long words inside flex item but it doesn't solve the problem
Thank you