2017-11-17 125 views
0

我有以下几点:CSS包装行为空白

enter image description here

我不想打破标签,所以我指定的white-space: nowrap选项跨度。但是,现在我有以下问题:线路根本没有中断。

enter image description here

我该如何解决这个问题?

相关HTML:

<td class="tags-column"> 
    <span class="library-tags"><i class="fa fa-tag"></i>&nbsp;test</span> 
    .... 
</td> 
+0

空白:https://css-tricks.com/almanac/properties/w:这里预先包装的详细信息/空格/ –

回答

3

添加以下的风格.library-tags

.library-tags 
{ 
display:inline-block; 
float:left 
}