這是帶有電子郵件和複選框單元格的表格。但我如何禁用textwrapping?禁用文字環繞
代碼是一樣成才:
<table>
<tr>
<td>
<input type="checkbox" />
<td>
Dmitry soloviev ([email protected])
</tr>
...........
</table>
這是帶有電子郵件和複選框單元格的表格。但我如何禁用textwrapping?禁用文字環繞
代碼是一樣成才:
<table>
<tr>
<td>
<input type="checkbox" />
<td>
Dmitry soloviev ([email protected])
</tr>
...........
</table>
你應該添加一些類...
<table class="tbl-emails">
然後
.tbl-emails td { white-space: nowrap; }
白色的空間屬性,可以防止文本從包裝,直到你把休息
成你的文字。
p { white-space: nowrap; }
嘿你有興趣,避免滾動條較簡單的方法是使用'溢出:hidden'財產在CSS的表。如果你的意圖不同,請澄清這個問題。 – codeomnitrix 2011-05-20 09:35:04