HTML中表格属性rowspan与colspan的使用小例子

来源:互联网 发布:杜蕾斯淘宝快递 编辑:程序博客网 时间:2024/06/06 00:59
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title> New Document </title>  <meta name="Generator" content="EditPlus">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content=""> </head> <body>  <table border="1px" bordercolor="red">  <tr><td rowspan="2">11</td><td colspan="2">12</td>  </tr>  <tr><td>22</td><td rowspan="2">23</td>  </tr>  <tr><td colspan="2">31</td>  </tr>  </table> </body></html>

原创粉丝点击