Home >Web Front-end >HTML Tutorial >Detailed explanation of the use of tag in html

Detailed explanation of the use of tag in html

黄舟
黄舟Original
2017-06-20 15:53:154621browse

html5中581cdb59a307ca5d1e365becba940e05标签作用是定义表格中一个或多个列属性值,这里详细介绍下581cdb59a307ca5d1e365becba940e05标签用法、581cdb59a307ca5d1e365becba940e05标签属性以及581cdb59a307ca5d1e365becba940e05标签应用实例。

html中581cdb59a307ca5d1e365becba940e05标签作用:定义表格中一个或多个列属性值

581cdb59a307ca5d1e365becba940e05标签用法:

581cdb59a307ca5d1e365becba940e05 标签为表格中一个或多个列定义属性值。

如需对全部列应用样式,581cdb59a307ca5d1e365becba940e05 标签很有用,这样就不需要对各个单元和各行重复应用样式了。

您只能在 table 或 colgroup 元素中使用 581cdb59a307ca5d1e365becba940e05 标签。

581cdb59a307ca5d1e365becba940e05标签应用实例:

col 元素为表格中的三个列规定了不同的对齐方式:

<table width="100%" border="1">  <col align="left" />
  <col align="left" />
  <col align="right" />
  <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>

581cdb59a307ca5d1e365becba940e05标签有哪些属性?

哪些浏览器支持581cdb59a307ca5d1e365becba940e05标签?

所有主流浏览器都支持581cdb59a307ca5d1e365becba940e05标签。

html中col标签的实例

<html>
<body>
<table border="2">
<col span="2" style="color:red">
<col style="color:blue">
<tr>
<td>红色</td>
<td>红色</td>
<td>蓝色</td>
</tr>
<tr>
<td>红色</td>
<td>红色</td>
<td>蓝色</td>
</tr>
</table>
</body>
</html>

这样就可以给每一列设置样式,而不用在每个td里面设置。

第一二两列是红的。第三列是蓝的。

The above is the detailed content of Detailed explanation of the use of tag in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn