html - text larger columns in bootstrap -


I used to bootstrap a project recently, but I do not understand why I have this problem.

Enter image details here

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

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -