标签: php twitter-bootstrap laravel-5.3
我有一个问题。 引导程序重叠的div col中的文本
This is the problem in image
This is the code in image
谢谢,抱歉英文不好
答案 0 :(得分:0)
使用CSS属性包装文本。
word-wrap: break-word;
答案 1 :(得分:0)
我看到2个解决方案。 :
_在下面的css类中,文本将被截断并以3点结束
.my-new-class{ overflow:hidden; text-overflow: ellipsis; }
_在下面的css类中,单词将只显示多行。
.my-new-class{ word-wrap: break-word; }