html - text larger columns in bootstrap -
I used to bootstrap a project recently, but I do not understand why I have this problem.
As you can see On the screen, I set a div to 4 columns, but the text comes out. You are probably also with any of you. Does anybody know the solution?
Thank you in advance
This is because The text is overflowing with the container, and does not break, add:
overflow: hidden; To prevent this overflow from being visible, or
word-wrap: break-word; To break the text and wrap it back within the container boundaries To see the differences between these approaches see Bella above.
Comments
Post a Comment