表格 - Tables

菜單


品項 價錢
玉米蛋餅 30 元
火腿蛋餅 25 元
香菜蛋餅 35 元
洋蔥蛋餅 (售罄) 35 元
紅蔥頭蛋餅 (售罄) 35 元
品項 價錢
綠茶 30 元
紅茶 25 元
奶茶 35 元
冰咖啡 35 元
訂單編號 訂單狀態 品項 價錢 下單時間 指定送達時間 送貨地址 備註 發票
#12345678 新訂單 珍珠奶茶 * 1 50 2020/03/31 14:05 2020/04/01 14:05 高雄市楠梓區壽豐路 421 號 不要吸管 XY12345678
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
<h3>菜單</h3>
<hr />
<table class="table">
  <thead>
    <tr>
      <th>品項</th>
      <th>價錢</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>玉米蛋餅</td>
      <td>30 元</td>
    </tr>
    <tr>
      <td>火腿蛋餅</td>
      <td>25 元</td>
    </tr>
    <tr>
      <td>香菜蛋餅</td>
      <td>35 元</td>
    </tr>
    <tr class="disabled">
      <td>洋蔥蛋餅 (售罄)</td>
      <td>35 元</td>
    </tr>
    <tr class="disabled">
      <td>紅蔥頭蛋餅 (售罄)</td>
      <td>35 元</td>
    </tr>
  </tbody>
</table>

<table class="table striped">
  <thead>
    <tr>
      <th>品項</th>
      <th>價錢</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>綠茶</td>
      <td>30 元</td>
    </tr>
    <tr>
      <td>紅茶</td>
      <td>25 元</td>
    </tr>
    <tr>
      <td>奶茶</td>
      <td>35 元</td>
    </tr>
    <tr>
      <td>冰咖啡</td>
      <td>35 元</td>
    </tr>
  </tbody>
</table>

<div class="table-responsive">
  <table class="table striped">
    <thead>
      <tr>
        <th>訂單編號</th>
        <th>訂單狀態</th>
        <th>品項</th>
        <th>價錢</th>
        <th>下單時間</th>
        <th>指定送達時間</th>
        <th>送貨地址</th>
        <th>備註</th>
        <th>發票</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>#12345678</td>
        <td>新訂單</td>
        <td>珍珠奶茶 * 1</td>
        <td>50</td>
        <td>2020/03/31 14:05</td>
        <td>2020/04/01 14:05</td>
        <td>高雄市楠梓區壽豐路 421 號</td>
        <td>不要吸管</td>
        <td>XY12345678</td>
      </tr>
    </tbody>
  </table>
</div>