<col>标记的用途是什么,所有浏览器都支持该标记吗?

我正在尝试<col style="background:red">,但无法正常工作。我使用的是Firefox 3。

<table width="100%" border="1">
  <col style="background:red">
  <caption> Table Caption </caption>

最佳答案

它可以工作,但不影响字幕。工作示例:

<html>
<head>
<title></title>
</head>
<body>

<table>
  <caption>test</caption>
  <col style="background:red" />
  <col style="background:blue" />
  <tr>
    <td>red</td>
    <td>blue</td>
  </tr>
  <tr>
    <td>red</td>
    <td>blue</td>
  </tr>
</table>

</body>
</html>

标记是在HTML 4.01(1997)中定义的,在XHTML中不推荐使用,因此,任何平台上的每个当前浏览器都应支持该标记(在用户界面允许的范围内)。

关于css - 如何正确使用<col>标记,并且所有浏览器都支持该标记?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3024534/

10-11 15:04
查看更多