案例:html案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
table.lamp {
6
    width:100%;
7
    border:1px solid #d4d4d4;
8
}
9
table.lamp th, td { 
10
    padding:10px;
11
}
12
table.lamp th {
13
    width:40px;
14
}
15
16
</style>
17
</head>
18
19
<body>
20
 
21
<table class="lamp">
22
<tr>
23
  <th>
24
    <img src="/img/lamp.jpg" alt="Note" style="height:32px;width:32px">
25
  </th>
26
  <td>
27
    The table element was not designed to be a layout tool.
28
  </td>
29
</tr>
30
</table>
31
32
</body>
33
</html>