Advertisement
tourniquet

Two tables on same line

Jul 20th, 2015
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.95 KB | None | 0 0
  1. <!-- css  -->
  2. .data-table {
  3.     margin-top: 30px;
  4. }
  5.  
  6.  
  7. .table {
  8.     float: left;
  9. }
  10.  
  11.  
  12. .fixedCol {
  13.     width: 50px;
  14.     display: inline-table;
  15. }
  16.  
  17.  
  18. <!-- html -->
  19. <div class="data-table">
  20.     <!-- fixed first column table -->
  21.     <table class="table fixedCol">
  22.         <thead>
  23.             <tr>
  24.                 <th>Client ID</th>
  25.             </tr>
  26.         </thead>
  27.         <tbody>
  28.             <tr>
  29.                 <td>
  30.                     #1
  31.                 </td>
  32.             </tr>
  33.         </tbody>
  34.     </table>
  35.  
  36.     <!-- table -->
  37.     <div class="table-responsive">
  38.         <table class="table table-striped scrollCol"> <!-- table table-striped -->
  39.             <thead>
  40.                 <tr>
  41.                     <th>First Name</th>
  42.                     <th>Last Name</th>
  43.                     <th>Registration Date</th>
  44.                     <th>Campaign</th>
  45.                     <th>Language</th>
  46.                     <th>Status Country</th>
  47.                     <th>Campaign Country</th>
  48.                     <th>Client Country</th>
  49.                     <th>Phone</th>
  50.                     <th>Email</th>
  51.                     <th>Currency</th>
  52.                     <th>Account</th>
  53.                     <th>Status</th>
  54.                     <th>Account Ballance</th>
  55.                 </tr>
  56.             </thead>
  57.             <tbody>
  58.                 <tr>
  59.                     <td>John</td>
  60.                     <td>Travolta</td>
  61.                     <td>1.04.2013</td>
  62.                     <td>Cube</td>
  63.                     <td>Romanian</td>
  64.                     <td>Moldova</td>
  65.                     <td>Moldova</td>
  66.                     <td>Moldova</td>
  67.                     <td>Nokia</td>
  68.                     <td>admin@example.com</td>
  69.                     <td>EUR</td>
  70.                     <td>Yes</td>
  71.                     <td>Flying</td>
  72.                     <td>0</td>
  73.                 </tr>
  74.             </tbody>
  75.         </table>
  76.     </div>
  77. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement