<col>
标签为表格中一个或多个列定义属性值。
如需对全部列应用样式,<col>
标签很有用,这样就不需要对各个单元和各行重复应用样式了。只能在 <table>
或 <colgroup>
标签中使用 <col>
标签。
属性 | 值 | 描述 |
span | number 规定 col | 元素应该横跨的列数。 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style>
table{
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<colgroup>
<col span="2" style="background-color:green">
<col style="background-color:yellow">
</colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>零基础入门学习Web(Html5+Css3)</td>
<td>$53</td>
</tr>
<tr>
<td>2489604</td>
<td>零基础入门学习Web(JavaScript)</td>
<td>$47</td>
</tr>
</table>
</body>
</html>
ISBN | Title | Price |
---|---|---|
3476896 | 零基础入门学习Web(Html5+Css3) | $53 |
2489604 | 零基础入门学习Web(JavaScript) | $47 |