在我的HTML表格中,有時我的單元格中有很長的單詞。所以如果他們的區域溢出,我需要打破一些詞彙。
這個問題說明了如何打破錶格單元格:建議Word-wrap in an HTML table
這個CSS樣式:style="word-wrap: break-word; table-layout: fixed; width: 100%"
包裝表格單元格中的單詞,但表格佈局固定使列大小相等
但是,如果使用表格的佈局:固定的,我的專欄等於大小。但在我的情況下,表格的寬度爲100%,如果表格固定,那麼列的寬度相等。但是這需要從頁面的高度。
我的小提琴:http://jsfiddle.net/mavent/Y54s9/17/
我需要什麼?
- 我的表格有2列,我希望第二列越窄越好。
- 第二列的寬度不應超過列的名稱。
- 列名不應包裝。 < th>名稱不能包裝。
- 第一欄應寬。我不喜歡固定列寬,如%60,%70等。但如果是解決方案,我可以使用固定列寬,但必須考慮響應性。
- 表應該是響應式的。我將在移動版面中使用此表格。
- 如果單詞超出單元格寬度,則必須嚴格包裝單詞。例如,如果單元格可以佔用最多40個字符並且單詞是45個字符,則無論字符是什麼,單詞都可以被打破。
輸出應該是這樣的小,大屏幕:
代碼:
.myclass1 {
white-space: normal;
}
.myclass2 {
word-wrap: break-word;
table-layout: fixed;
}
<table class="table table-striped table-condensed dataTable myclass1" id="mytable">
<thead>
<tr>
<th class="sorting">header1</th>
<th class="sorting">header2</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="">
<span class="">Some words are generally short and easy to read
<a href="#"><i class="glyphicon glyphicon-share-alt"></i></a></span>
</td>
<td class="">
<span><button class="btn btn-primary btn-xs">123</button></span>
</td>
</tr>
</tbody>
</table>
<hr><hr>
<table class="table table-striped table-condensed dataTable myclass1" id="mytable">
<thead>
<tr>
<th class="sorting">header1</th>
<th class="sorting">header2</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="">
<span class="">Some words are generally short and easy to read, butsomewordsareĞĞÜÜveryverylongIŞÖlikeethisssssGAAAAAAAAAAAAAABBBBBBBBBBBBBbbbbbCCC
<a href="#"><i class="glyphicon glyphicon-share-alt"></i></a></span>
</td>
<td class="">
<span><button class="btn btn-primary btn-xs">123</button></span>
</td>
</tr>
<tr>
<td>
<span>Some words are generally short and easy to read, butsomewordsare veryverylonglikeethisssssGAAAAAAAAAAAAAABBBBBBBBBBBBBbbbbbCCC
<a href="#"><i class="glyphicon glyphicon-share-alt"></i></a></span>
</td>
<td class="">
<span><button class="btn btn-primary btn-xs">225</button></span>
</td>
</tr>
</tbody>
</table>
<hr><hr>
<table class="table table-striped table-condensed dataTable myclass2" id="mytable">
<thead>
<tr>
<th class="sorting">header1</th>
<th class="sorting">header2</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="">
<span class="">Some words are generally short and easy to read, butsomewordsareĞĞÜÜveryverylongIŞÖlikeethisssssGAAAAAAAAAAAAAABBBBBBBBBBBBBbbbbbCCC
<a href="#"><i class="glyphicon glyphicon-share-alt"></i></a></span>
</td>
<td class="">
<span><button class="btn btn-primary btn-xs">123</button></span>
</td>
</tr>
<tr>
<td>
<span>Some words are generally short and easy to read, butsomewordsare veryverylonglikeethisssssGAAAAAAAAAAAAAABBBBBBBBBBBBBbbbbbCCC
<a href="#"><i class="glyphicon glyphicon-share-alt"></i></a></span>
</td>
<td class="">
<span><button class="btn btn-primary btn-xs">225</button></span>
</td>
</tr>
</tbody>
</table>
無論是固定表格佈局還是詞彙都不是一種恰當的方法。但是此外,這個問題沒有具體說明應該發生什麼:表格應該如何格式化,以及內容中可接受的換行點是什麼。對於任何正常的文本內容,語言特定的連字是正確的方法。 –
http://jsfiddle.net/erenyener/Y54s9/18/這是你需要的 –
@ JukkaK.Korpela謝謝你的評論我編輯的問題。 – trante