|
第一个,浅灰色表和css样式,非常经典
- <style type="text/css">
- table.gridtable {
- font-family: verdana,arial,sans-serif;
- font-size:12px;
- color:#333333;
- border-width: 1px;
- border-color: #666666;
- border-collapse: collapse;
- }
- table.gridtable th {
- border-width: 1px;
- padding: 8px;
- border-style: solid;
- border-color: #666666;
- background-color: #dedede;
- }
- table.gridtable td {
- border-width: 1px;
- padding: 8px;
- border-style: solid;
- border-color: #666666;
- background-color: #ffffff;
- }
- </style>
-
- <table class="gridtable">
- <tr>
- <th>汽车</th><th>飞机</th><th>高铁</th>
- </tr>
- <tr>
- <td>电动车</td><td>波音飞机</td><td>复兴号</td>
- </tr>
- <tr>
- <td>油电混合</td><td>空客飞机</td><td>和平号</td>
- </tr>
- </table>
复制代码 |
|