9.8.1 HTML colgroup 标签

colgroup 标签 -- 表示对HTML表格进行结构化的分区,在此分区中可以通过使用col定义每列表格的样式
  • colgroup标签是成对出现的,以<colgroup>开始,以</colgroup>结束
  • 属性
    • Common -- 一般属性
    • span -- 定义一个colgroup跨越的列数,默认值为1
  • 引用网址:http://www.dreamdu.com/xhtml/tag_colgroup/

示例

<table border="1">
	<colgroup>
		<col />
		<col class="yellow" />
		<col />
		<col span="2" class="blue" />
	</colgroup> 
	<tr> 
		<th>www.dreamdu.com</th>
		<th>.com域名的数量</th>
		<th>.cn域名的数量</th>
		<th>.net域名的数量</th>
		<th>.com.cn域名的数量</th>
	</tr>
	<tr>
		<td>2003年</td>
		<td>1000</td>
		<td>2000</td>
		<td>3000</td>
		<td>4000</td>
	</tr>
</table>

HTML colgroup 标签示例 -- 可以尝试编辑



  • 教程中有什么不懂的地方?发现教程的错误!对教程有什么建议!快快给我留言呀 给猴子留言,我会尽快解答你的问题:)