搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<table style="width:100%" border="1" height="400"> <tr> <th>编号</th> <th>月份</th> <th>储蓄</th> </tr> <tr> <td valign="top">1</td> <td valign="top">一月</td> <td valign="top">3100</td> </tr> <tr> <td valign="bottom">2</td> <td valign="bottom">二月</td> <td valign="bottom">2180</td> </tr> </table>
运行结果