CSS用“......”打破长文本

时间:2013-09-16 10:55:03

标签: php css

我试图在text-overflow:ellipsis代码中使用<td>,但它仅支持<div>代码。

是否支持<td>代码?

检查我想要做什么 http://phpresult.com/source/share/L9F71379328772

2 个答案:

答案 0 :(得分:1)

我使用max-width

找到了解决方案
<style> 
.test
{
white-space:nowrap; 
text-overflow:ellipsis;
max-width: 100px; 
overflow:hidden; 
border:1px solid #000000;
}
</style>
</head>
<body>
  <table border="1">
    <tr>
      <td class="test">
      This is the Long text only applied to div tag
      </td>
    </tr>
  </table>
</body>

答案 1 :(得分:0)

添加以下代码...

td {
  display: block; /* or inline-block */
}

使用

table-layout: fixed;

或给你的桌子固定宽度