程序清单11.2 表格内的对齐、单元格间距、边框和背景颜色
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Things to Fear</title>
</head>
<body>
<table border="2" cellpadding="4" cellspacing="2">
<tr style="background-color:silver">
<th colspan="2">Description</th>
<th>Size</th>
<th>Weight</th>
<th>Speed</th>
</tr>
<tr style="vertical-align:top">
<td><img src="handgun.gif" alt=".38 Special"/></td>
<td><h2>.38 Special</h2></td>
<td>Five-inch barrel.</td>
<td>Twenty ounces.</td>
<td>Six rounds in four seconds.</td>
</tr>
<tr style="vertical-align:top">
<td><img src="rhino.gif" alt="Rhinoceros" /></td>
<td><h2>Rhinoceros</h2></td>
<td>Twelve feet, horn to tail.</td>
<td>Up to two tons.</td>
<td>Thirty-five miles per hour in bursts.</td>
</tr>
<tr style="vertical-align:top">
<td><img src="axeman.gif" alt="Broad Axe " /></td>
<td><h2>Broad Axe</h2></td>
<td>Thirty-inch blade.</td>
<td>Twelve pounds.</td>
<td>Sixty miles per hour on impact.</td>
</tr>
</table> #p#分页标题#e#
</body>
</html>
图11.2 程序清单11.2中的colspan属性使左上角的单元格跨越多列
评论 {{userinfo.comments}}
{{child.content}}
{{question.question}}
提交