案例:CSS案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
#customers
5
  {
6
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
7
  width:100%;
8
  border-collapse:collapse;
9
  }
10
11
#customers td, #customers th 
12
  {
13
  font-size:1em;
14
  border:1px solid #98bf21;
15
  padding:3px 7px 2px 7px;
16
  }
17
18
#customers th 
19
  {
20
  font-size:1.1em;
21
  text-align:left;
22
  padding-top:5px;
23
  padding-bottom:4px;
24
  background-color:#A7C942;
25
  color:#ffffff;
26
  }
27
28
#customers tr.alt td 
29
  {
30
  color:#000000;
31
  background-color:#EAF2D3;
32
  }
33
</style>
34
</head>
35
36
<body>
37
<table id="customers">
38
<tr>
39
<th>Company</th>
40
<th>Contact</th>
41
<th>Country</th>
42
</tr>
43
44
<tr>
45
<td>Apple</td>
46
<td>Steven Jobs</td>
47
<td>USA</td>
48
</tr>