html col标签用于表格中一个或多个列定义属性值,如需对全部列应用样式,
html col标签怎么用?
作用:表格中一个或多个列定义属性值。
说明:
如需对全部列应用样式,
注释:在 HTML 中,
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>
效果:
Atas ialah kandungan terperinci html col标签怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!