html表格标签
在网页制作之中,表格标签是常用的标签之一,比如制作表格,或者利用表格的整齐性来设置页面布局。
其中table有不少属性,比如:border,bordercolor,cellspacing,width,height,bgcolor。boder表示外框边线的粗细,bodercolor表示边线的颜色,cellspacing表示单元格之间的空隙,width表示表格的宽,height表示表格的高,bgcolor表示背景色。
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <head> <title size="10" color="red">welcome to HTML</title> </head> <body> <table border="1" bordercolor="blue" cellspacing="0" width="400" height="150"> <tr align="center"> <td>姓名</td> <td>性别</td> <td>年龄</td> </tr> <tr> <td>carson</td> <td>男</td> <td>24</td> </tr> <tr> <td>thl</td> <td>女</td> <td>24</td> </tr> <tr> <td>Alice</td> <td>女</td> <td>24</td> </tr> </table> </body> </html>
效果图:
以上就是html表格标签的详细内容,更多请关注https://www.sxiaw.com/其它相关文章!