html colgroup标签
翻译结果:
英 [gru:p] 美 [ɡrup]
n.组,团体;群,批;(雕塑等的)群像;(英美的)空军大队
vt.& vi.使成群,集合
vt.分类,归类
第三人称单数: groups 复数: groups 现在分词: grouping 过去式: grouped 过去分词: grouped
html colgroup标签语法
colgroup标签是什么意思?
作用:对表格中的列进行组合,以便对其进行格式化。
说明:如需对全部列应用样式,<colgroup> 标签很有用,这样就不需要对各个单元和各行重复应用样式了。<colgroup> 标签只能在 table 元素中使用。
注释:所有主流浏览器都支持 <colgroup> 标签。Firefox、Chrome 以及 Safari 仅支持 colgroup 元素的 span 和 width 属性。
html colgroup标签示例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table width="100%" border="1"> <colgroup span="2" align="left"></colgroup> <colgroup align="right" style="color:#0000FF;"></colgroup> <tr> <th>商品种类</th> <th>名称</th> <th>价格</th> </tr> <tr> <td>衣服</td> <td>衬衣</td> <td>53元</td> </tr> <tr> <td>鞋子</td> <td>板鞋</td> <td>199元</td> </tr> </table> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例