html中的表格
摘要:
在html中绘制表格使用table标签tr表示行td表示列th表示表头,表头通常用于列名字。下面是一个列子。<html> <head> <title>Table in html</title> </head> <body> <p>水平表头</p> <table border="1"> <tr> <th>Name</th> <th>Age</th> <th>Gender</th> < 阅读全文
posted @ 2011-07-29 23:46 perlman 阅读(11670) 评论(1) 推荐(0) 编辑