搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 标签大全
源代码
清空
点击运行
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>HTML table标签的使用(大卫编程网 div.cn)</title> </head> <body> <table border="1"> <tr> <th>Item</th> <th>Amount</th> </tr> <tr> <td>Bananas</td> <td>$5</td> </tr> <tr> <td>Oranges</td> <td>$17</td> </tr> </table> <br> <table border="1"> <thead> <tr> <th colspan="2">The table header</th> </tr> </thead> <tbody> <tr> <td>The table body</td> <td>with two columns</td> </tr> </tbody> </table> </body> </html>
运行结果