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

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -