嗨,我想通过单击按钮在 2 秒内将 HTML 表格的高度从 690 更改为 400。有没有办法在纯 CSS 中做到这一点?这是我的例子:
<html>
<head>
<title>Test</title>
</head>
<body>
<table>
<tr>
<td>
<button type="button">Click Me!</button>
</td>
</tr>
<tr>
<td height="690" width="1280> <--- This cell needs it height to change to 400px when the button is clicked.
Cell 1
</td>
</tr>
</table>
</body>
</html>