案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
table,td,th
5
  {
6
  border:1px solid black;
7
  }
8
9
table
10
  {
11
  width:100%;
12
  }
13
14
th
15
  {
16
  height:50px;
17
  }
18
</style>
19
</head>
20
21
<body>
22
<table>
23
<tr>
24
<th>Firstname</th>
25
<th>Lastname</th>
26
</tr>
27
<tr>
28
<td>Bill</td>
29
<td>Gates</td>
30
</tr>
31
<tr>
32
<td>Steven</td>
33
<td>Jobs</td>
34
</tr>
35
</table>
36
</body>
37
</html>
38