JavaScript 参考手册
Style verticalAlign 属性
改变表格中文本的垂直对齐方式
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function displayResult() { document.getElementById("td1").style.verticalAlign = "bottom"; } </script> </head> <body> <table border="1" height="100px"> <tr> <td id="td1">一些实例文本</td> </tr> </table> <br> <input type="button" onclick="displayResult()" value="对齐文本"> </body> </html>
运行结果:
点击运行 »