天下维客,你可以修改的网络知识库
| HTML速成
|
|
|
| 内容:
|
|
|
| HTML教程:
|
|
|
| 其它教程:
|
|
|
| 外部资源
|
|
|
表格标志对于制作网页是很重要的,我希望您能记住这一点,现在很多很多网页都是使用多重表格,主要是因为表格不但可以固定文本或图像的输出,而且还可以任意的进行背景和前景颜色的设置。
==
|}
==
标志对用来创建一个表格。它有以下属性:
| 属性 | 用途
|
| 设置表格的背景色。
|
| 设置边框的宽度,若不设置此属性,则边框宽度默认为0。
|
| 设置边框的颜色。
|
| 设置边框明亮部分的颜色(当border的值大于等于1时才有用)。
|
| 设置边框昏暗部分的颜色(当border的值大于等于1时才有用)。
|
| 设置表格格子之间空间的大小。
|
| 设置表格格子边框与其内部内容之间空间的大小。
|
| 设置表格的宽度,单位用绝对像素值或总宽度的百分比。
|
说明:以上各个属性可以结合使用。有关宽度、大小的单位用绝对像素值。而有关颜色的属性使用十六进制RGB颜色<br />码或Html语言给定的颜色常量名(如 Silver 为银色)
==
|-|| ==
|-标志对用来创建表格中的每一行。此标志对只能放在
|}
标志对之间使用,而在此标志对之间加入文本将是无用的,因为在
|-之间只能紧跟|| 标志对才是有效的语法,|| 标志对用来创建表格中一行中的每一个格子,此标志对也只有放在
|-标志对之间才是有效的,您想要输入的文本也只有放在|| 标志对中才有效(即才能够显示出来)。
|-还有align和valign属性。align是水平对齐方式,取值为left(左对齐)、center(居中)、right(右对齐);而valign是垂直对齐方式,取值为top(靠顶端对齐)、middle(居中间对齐)或bottom(靠底部对齐)。具有width、colspan、rowspan和nowrap属性。width是格子的宽度,单位用绝对像素值或总宽度的百分比;colspan设置一个表格格子跨占的列数(缺省值为1);rowspan设置一个表格格子跨占的行数(缺省值为1);nowrap禁止表格格子内的内容自动断行。
!!
| | 标志对用来设置表格头,通常是黑体居中文字。
看一看下边的例子就明白以上标志对的用法了。
例6 表格标志的综合示例
<html><br />
<head><br />
<title>表格标志的综合示例</title><br />
</head><br />
<body><br />
<table border="1" width="80%" bgcolor="#E8E8E8" cellpadding="2" bordercolor="#0000FF"
bordercolorlight="#7D7DFF" bordercolordark="#0000A0"><br />
<tr><br />
<th width="33%" colspan="2" valign="bottom">意大利</th><br />
<th width="36%" colspan="2" valign="bottom">英格兰</th><br />
<th width="36%" colspan="2" valign="bottom">西班牙</th><br />
</tr><br />
<tr><br />
<td width="16%" align="center">AC米兰</td><br />
<td width="16%" align="center">佛罗伦萨</td><br />
<td width="17%" align="center">曼联</td><br />
<td width="17%" align="center">纽卡斯尔</td><br />
<td width="17%" align="center">巴塞罗那</td><br />
<td width="17%" align="center">皇家社会</td><br />
</tr><br />
<tr><br />
<td width="16%" align="center">尤文图斯</td><br />
<td width="16%" align="center">桑普多利亚</td><br />
<td width="17%" align="center">利物浦</td><br />
<td width="17%" align="center">阿申纳</td><br />
<td width="17%" align="center">皇家马德里</td><br />
<td width="17%" align="center">……</td><br />
</tr><br />
<tr><br />
<td width="16%" align="center">拉齐奥</td><br />
<td width="16%" align="center">国际米兰</td><br />
<td width="17%" align="center">切尔西</td><br />
<td width="17%" align="center">米德尔斯堡</td><br />
<td width="17%" align="center">马德里竞技</td><br />
<td width="17%" align="center">……</td><br />
</tr><br />
</table><br />
</body><br />
</html><br />
| 意大利 |
英格兰 |
西班牙 |
| AC米兰
| 佛罗伦萨
| 曼联
| 纽卡斯尔
| 巴塞罗那
| 皇家社会
|
| 尤文图斯
| 桑普多利亚
| 利物浦
| 阿申纳
| 皇家马德里
| ……
|
| 拉齐奥
| 国际米兰
| 切尔西
| 米德尔斯堡
| 马德里竞技
| ……
|
|
|
|
|
|
|
|
|