W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function alignText() { document.getElementById("td1").style.verticalAlign="bottom"; } </script> </head> <body> <table border="1" height="100px"> <tr> <td id="td1"> Some example text </td> </tr> </table> <br /> <input type="button" onclick="alignText()" value="Align text" /> </body> </html>