数据库中呈现的文本始终不会移动到下一行,

时间:2016-07-30 07:42:45

标签: html zurb-foundation laravel-5.2

  

StackEdit撰写。

嗨,数据库中呈现的文本总是不会移动到下一行,它始终只保留一行,无论我使用<h>标签还是<p>标签都会发生同样的事情,偶尔会出现我的所有应用。这就是我的意思,通过我使用基础5和laravel的方式。

can you see the text rndering in one line

另一个例子

another example

这是我的代码

<div class="small-12 medium-12 large-9 columns">
    <h5 class="text-left grey-text montserrat-font uppercase">style description</h5>
    <hr>
    <div class="text-con">
    <h6 class="grey-text montserrat-font testing">
    {{$style->style_description}}
    </h6>
    </div>
</div>

2 个答案:

答案 0 :(得分:2)

考虑到您的testing类具有所需的CSS。添加以下规则。

.testing {
   word-wrap:break-word;
}

答案 1 :(得分:0)

只需添加省略号而不是破解词。 .testing{text-overflow: ellipsis;}