我有大约html表格,其中文本数据太大,无法适当使用。 因此,它纵向扩大该电池,以适应这一需要。 因此,现在,超额增长是数据数量较少的浏览数的两倍。 这是不可接受的。 我怎么能够迫使桌上在<条码>1em条码>上保持同样的高位?
这里是重复这一问题的一些标志。 表格只能是一行的顶峰,其溢出案文是隐蔽的。
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
table { width:250px; }
table tr { height:1em; overflow:hidden; }
</style>
</head>
<body>
<table border="1">
<tr>
<td>This is a test.</td>
<td>Do you see what I mean?</td>
<td>I hate this overflow.</td>
</tr>
</table>
</body>
</html>