test.html 926 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
  8. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  9. <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
  10. </head>
  11. <body>
  12. <div class="container">
  13. <h2>Table</h2>
  14. <p> .table-hover 类启用表格中 tbody 上的行的悬停效果:</p>
  15. <table class="table table-hover">
  16. <thead>
  17. <tr>
  18. <th>#</th>
  19. <th>Firstname</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr>
  24. <td>1</td>
  25. <td>Anna</td>
  26. </tr>
  27. <tr>
  28. <td>2</td>
  29. <td>Debbie</td>
  30. </tr>
  31. <tr>
  32. <td>3</td>
  33. <td>John</td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. </div>
  38. </body>
  39. </html>