我试图在text-overflow:ellipsis
代码中使用<td>
,但它仅支持<div>
代码。
是否支持<td>
代码?
答案 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;
或给你的桌子固定宽度