Sufyan

Bootstrap 4 - Table Actions

Nov 26th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.06 KB | None | 0 0
  1. <table class="table">
  2.  <thead>
  3.    <tr>
  4.      <th scope="col">#</th>
  5.      <th scope="col">First</th>
  6.      <th scope="col">Last</th>
  7.      <th scope="col">Handle</th>
  8.      <th scope="col">Actions</th>
  9.    </tr>
  10.  </thead>
  11.  <tbody>
  12.    <tr>
  13.      <th scope="row">1</th>
  14.      <td>Mark</td>
  15.      <td>Otto</td>
  16.      <td>@mdo</td>
  17.      <td>
  18.    
  19.    <button type="button" class="btn btn-outline-primary">View</button>
  20. <button type="button" class="btn btn-outline-warning">Edit</button>
  21. </td>
  22.    </tr>
  23.    <tr>
  24.      <th scope="row">2</th>
  25.      <td>Jacob</td>
  26.      <td>Thornton</td>
  27.      <td>@fat</td><td>
  28.    
  29.    <button type="button" class="btn btn-outline-primary">View</button>
  30. <button type="button" class="btn btn-outline-warning">Edit</button>
  31. </td>
  32.    
  33.    </tr>
  34.    <tr>
  35.      <th scope="row">3</th>
  36.      <td>Larry</td>
  37.      <td>the Bird</td>
  38.      <td>@twitter</td><td>
  39.    
  40.    <button type="button" class="btn btn-outline-primary">View</button>
  41. <button type="button" class="btn btn-outline-warning">Edit</button>
  42. </td>
  43.    
  44.    </tr>
  45.  </tbody>
  46. </table>
Add Comment
Please, Sign In to add comment