码迷,mamicode.com
首页 > 其他好文 > 详细

通用table样式

时间:2014-09-01 13:58:33      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   div   html   log   sp   on   

<html>
<head>
    <title>通用table样式</title>
    <style type="text/css">
        body, table
        {
            font-size: 12px;
        }
        table
        {
            table-layout: fixed;
            empty-cells: show;
            border-collapse: collapse;
            margin: 0 auto;
        }
        td
        {
            height: 30px;
        }
        h1, h2, h3
        {
            font-size: 12px;
            margin: 0;
            padding: 0;
        }
        .table
        {
            border: 1px solid #cad9ea;
            color: #666;
        }
        .table th
        {
            background-repeat: repeat-x;
            height: 30px;
        }
        .table td, .table th
        {
            border: 1px solid #cad9ea;
            padding: 0 1em 0;
        }
        .table tr.alter
        {
            background-color: #f5fafe;
        }
    </style>
</head>
<body>
    <table width="90%" class="table">
        <tr>
            <th>学号</th>
            <th>姓名</th>
            <th>平时</th>
            <th>期中</th>
            <th>实验(践)</th>
            <th>其它</th>
            <th>期末</th>
            <th>总评</th>
        </tr>
        <tr>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
        </tr>
        <tr class="alter">
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>2</td>
            <td>2</td>
        </tr>
        <tr>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>3</td>
            <td>3</td>
        </tr>
        <tr class="alter">
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>4</td>
            <td>4</td>
        </tr>
    </table>
</body>
</html>

 

通用table样式

标签:style   blog   color   ar   div   html   log   sp   on   

原文地址:http://www.cnblogs.com/Jackie-sky/p/3949080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!