How do I stop my text from cutting off?

Problem - I'm not sure what caused the problem, but I've tried adding width: 100% to div ".container .contactInfo .box .text"
No description
No description
No description
4 Replies
naewhip
naewhip4mo ago
This isthe problem as you can see in the text
naewhip
naewhip4mo ago
No description
MarkBoots
MarkBoots4mo ago
your contact info is only allowed to be 50% of the container and it has an overflow of hidden. So everything that goes outside of that 50% will cut off. the box inside of that flex, so you could give it a flex-wrap: wrap. That will make the text go below the icon if there is not enough space anymore. imo there are some more flaws, but for that i would suggest you finish/revisit the [crl] course
naewhip
naewhip4mo ago
Thank you!