前端之家收集整理的这篇文章主要介绍了
html – 禁用文本换行,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是带有电子
邮件和复选框的表格。但是如何禁用文本包装?
代码有点像:
<table>
<tr>
<td>
<input type="checkBox" />
<td>
Dmitry soloviev (SolDmitr@mail.com)
</tr>
...........
</table>
你应该
添加一些类…
<table class="tbl-emails">
接着
.tbl-emails td { white-space: nowrap; }
原文链接:https://www.f2er.com/html/232679.html