菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂</title> </head> <body> <table border="1" width="100%"> <tr> <th axis="name">Name</th> <th axis="contact">Email</th> <th axis="contact">Phone</th> <th axis="contact">Address</th> </tr> <tr> <td axis="name">John Doe</td> <td axis="contact">someone@example.com</td> <td axis="contact">+45342323</td> <td axis="contact">Rosevn 56,4300 Sandnes,Norway</td> </tr> </table> <p><b>注意:</b> 大部分主流浏览器不支持 axis 属性。</p> <p><b>注意:</b> HTML5 不支持 axis 属性,可以使用 CSS 代替。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net