html col标签用于表格中一个或多个列定义属性值,如需对全部列应用样式,581cdb59a307ca5d1e365becba940e05标签很有用,这样就不需要对各个单元和各行重复应用样式了。您只能在table或colgroup元素中使用581cdb59a307ca5d1e365becba940e05标签。
html col标签怎么用?
作用:表格中一个或多个列定义属性值。
说明:
如需对全部列应用样式,581cdb59a307ca5d1e365becba940e05 标签很有用,这样就不需要对各个单元和各行重复应用样式了。您只能在 table 或 colgroup 元素中使用 581cdb59a307ca5d1e365becba940e05 标签。
注释:在 HTML 中,581cdb59a307ca5d1e365becba940e05 没有结束标签。在 XHTML 中,581cdb59a307ca5d1e365becba940e05 标签必须被正确的关闭。
html col标签使用示例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table width="100%" border="1"> <col /> <col /> <col /> <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>
效果:
以上是html col标签怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!