禁用文本换行

时间:2011-05-20 09:29:51

标签: html css

这是包含电子邮件和复选框单元格的表格。但我怎么能禁用文本包装?

代码就像:

<table>
<tr>
<td>
<input type="checkbox" />
<td>
Dmitry soloviev (SolDmitr@mail.com)
</tr>
...........
</table>

enter image description here

4 个答案:

答案 0 :(得分:58)

你应该添加一些类......

<table class="tbl-emails">

然后

.tbl-emails td { white-space: nowrap; }

答案 1 :(得分:15)

(添加到CSS选择器)。

white-space:nowrap;

答案 2 :(得分:6)

white-space属性允许您阻止文本换行,直到您在文本中放置中断为止。

p { white-space: nowrap; } 

答案 3 :(得分:3)

您还可以检查属性overflow-x:http://www.w3schools.com/cssref/css3_pr_overflow-x.asp