Jit*_*yas 6 css xhtml html-table cross-browser
<col>标签的用途是什么?它是否在所有浏览器中都受支持?
我在尝试,<col style="background:red">但它不起作用.我在使用Firefox 3.
<table width="100%" border="1">
<col style="background:red">
<caption> Table Caption </caption>
Run Code Online (Sandbox Code Playgroud)
它有效,但它不会影响标题.工作范例:
<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>
Run Code Online (Sandbox Code Playgroud)
标记在HTML 4.01(1997)中定义,并未在XHTML中弃用,因此任何平台上的每个当前浏览器都应支持它(就用户界面而言).