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"
4 Replies
This isthe problem as you can see in the text
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
Thank you!