こんにちは私はボタンをクリックすることでスムーズな移行で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>