html表格的标签是什么
html中,表格的标签为“
”,用于定义HTML表格;但表格中的元素需要使用一个或多个tr、th、td等标签来定义,语法“
”。
本教程操作环境:windows7系统、HTML5版、Dell G3电脑。
标签定义 HTML 表格。
简单的 HTML 表格由 table 元素以及一个或多个 tr、th 或 td 元素组成。
tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元。
更复杂的 HTML 表格也可能包括 caption、col、colgroup、thead、tfoot 以及 tbody 元素。
示例:
<table border="1"> <tr> <th>商品</th> <th>价格</th> </tr> <tr> <td>T恤</td> <td>¥100</td> </tr> <tr> <td>牛仔褂</td> <td>¥250</td> </tr> <tr> <td>牛仔库</td> <td>¥150</td> </tr> </table>效果图:
标签的可选属性
属性 值 描述 align
- left
- center
- right
不赞成使用。请使用样式代替。
规定表格相对周围元素的对齐方式。
bgcolor
- rgb(x,x,x)
- #xxxxxx
- colorname
不赞成使用。请使用样式代替。
规定表格的背景颜色。
border pixels 规定表格边框的宽度。 cellpadding
- pixels
- %
规定单元边沿与其内容之间的空白。 cellspacing
- pixels
- %
规定单元格之间的空白。 frame
- void
- above
- below
- hsides
- lhs
- rhs
- vsides
- box
- border
规定外侧边框的哪个部分是可见的。 rules
- none
- groups
- rows
- cols
- all
规定内侧边框的哪个部分是可见的。 summary text 规定表格的摘要。 width
- %
- pixels
规定表格的宽度。 推荐教程:《html视频教程》
以上就是html表格的标签是什么的详细内容,更多请关注其它相关文章!