1. 程式人生 > >h5學習筆記 Table

h5學習筆記 Table

                     

這裡寫圖片描述

編寫一個表格作為練習。當中有個比較重要的樣式在學習過程中遇到,border-collapse: collapse; 能夠去除雙重的邊框。table可以合併單元格所以 對td屬性設定 colspan=”2” 則代表可以設定單元格。

table 當中thead, tbody, tfoot 都是table元素。使用thead代表表頭 ,這個標籤好處的無需關係位置。同樣tfoot 也一樣。

.mytable tr:nth-child(2n) 為隔開選取,這樣就能夠間隔地處理錯開的顏色。

<!DOCTYPE html><html>    <head>        <meta
charset="UTF-8">
        <title>Table 練習</title>    </head>    <style>        .mytable        {            width: 800px;            height: auto;            margin: 0 auto;        }        .mytable table        {            width: 100%;            border: 1px solid #999;            padding
: 0
;            margin: 0;            border-collapse: collapse;        }
        .mytable th        {            height: 45px;            line-height: 45px;            text-align: center;            border-bottom: 1px solid #999;            padding: 0;            margin: 0;        }        .mytable td        {            height
: 45px
;            line-height: 45px;            text-align: center;            border-bottom: 1px solid #999;            padding: 0;            margin: 0;        }
        .mytable tr:hover        {            background-color: #f8f8f8;        }        .mytable tr:nth-child(2n)        {            background-color: #f8f8f8;        }        .mytable tfoot        {            width: 100%;        }        .mytable  tfoot a{            text-decoration: none;            color: #999;        }   
</style>    <body><div class="mytable">    <table>        <thead>            <tr>                <th>姓名</th>                <th>性別</th>                <th>電話</th>                <th>地址</th>            </tr>        </thead>        <tbody>            <tr>                <td>小米</td>                <td>未知</td>                <td>1234567</td>                <td>火星文明</td>            </tr>            <tr>                <td>華為</td>                <td>未知</td>                <td>1234567</td>                <td>火星文明</td>            </tr>            <tr>                <td>三星</td>                <td>未知</td>                <td>1234567</td>                <td>火星文明</td>            </tr>            <tr>                <td>蘋果</td>                <td>未知</td>                <td>1234567</td>                <td>火星文明</td>            </tr>        </tbody>        <tfoot>               <tfoot>                <tr>                                     <td><a href="#" class="more">上一頁</a></td>                    <td colspan="1"><a href="#" class="more">下一頁</a></td>                    <td colspan="2"></td>                </tr>              </tfoot>        </tfoot>            </table></div>    </body></html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119