html col标签是什么意思?col标签是规定了
html col标签的定义和用法:
如需对全部列应用样式,
您只能在 table 或 colgroup 元素中使用
HTML
col 元素为表格中的三个列规定了不同的对齐方式:
<table width="100%" border="1"> <col /> <col /> <col /> <tr> <th>ISBN</th> <th>Title</th> <th>Price</th> </tr> <tr> <td>3476896</td> <td>My first HTML</td> <td>$53</td> </tr> </table>
在html中,html