2016-03-01 41 views
0

我想用div來包裝單詞。我的css是CSS- Word不包裝在這種情況下 - 換行不起作用

.event-location { 
-webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); 
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%); 
height: 90px; 
line-height: 90px; 
white-space: nowrap; 
word-wrap: break-word; 
width: 100%; 
word-break: break-all; 
background-color: #337AB7; 
font-size: 18px; 
padding-left: 10px; 
font-weight: bold; 
border-radius: 3px;} 

在這種情況下,沒有切換到div以外的長線。

+0

必須自動換行之間選擇':打破字;'和'字突破:突破 - 所有;';每個人在不同的點上打破這些詞。 –

回答

4

您正在使用white-space:nowrap;,這會導致您不能分開文本。所以,你可以刪除或設置爲正常:

white-space:normal; 
相關問題