51-设置单元格的边框-border-collapse(边框线合并)

来源:互联网 发布:户型图软件 编辑:程序博客网 时间:2024/05/16 01:00

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.record{
 
 font:14px 宋体;
 border:2px #777 solid;
 text-align:center;
 border-collapse:collapse;
 }
.record td{ 
 border:1px #777 dashed;
 }
.record th{
 border:1px #777 solid;
 }
</style>
</head>

<body>
<table width="200" border="1" class="record" cellspacing="0" >
<caption>期中考试成绩单</caption>
<tr>
    <th>姓名</th> <th>物理</th> <th>化学</th> <th>数学</th> <th>总分</th>
</tr>
  <tr>
    <th>张三</th><td>32</td><td>32</td><td>32</td><td>32</td>
  </tr>
  <tr>
  <th>里斯</th><td>32</td><td>32</td><td>32</td><td>32</td>
  </tr>
  <tr>
   <th>王五</th><td>32</td><td>32</td><td>32</td><td>32</td>
  </tr>
  <tr>
   <th>赵六</th><td>32</td><td>32</td><td>32</td><td>32</td>
  </tr>
</table>
</body>
</html>

原创粉丝点击