13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>TableSaw Stack Table</title>
 
  <link rel="stylesheet" href="../../dist/tablesaw.css">
 
  <!--[if lt IE 9]><script src="../../dist/dependencies/respond.js"></script><![endif]-->
  <script src="../../dist/dependencies/jquery.js"></script>
  <script src="../../dist/tablesaw.js"></script>
  <script src="../../dist/tablesaw-init.js"></script>
</head>
<body>
<!-- <div style="position:relative;"> -->
  <table class="tablesaw" data-tablesaw-mode="swipe">
    <thead>
      <tr>
        <th data-tablesaw-priority="persist">rental unit address</th>
        <th>rooms</th>
        <th>fee</th>
      </tr>
    </thead>
    <tbody>
      <tr>        
        <td>1600 Pennsylvania Ave NW, Washington</td>
        <td>200 i imagine i've seen the west wing</td>
        <td>$200,000</td>
      </tr>
      <tr>        
        <td>10 downing street , London</td>
        <td>20 i imagine, I've seen ouse of Cards</td>
        <td>$200,000</td>
      </tr>
    </tbody>
  </table>
  <!-- </div> -->
  
  
  
</body>
</html>