使用 Bootstrap 為表格新增懸停顏色
若要為表格新增懸停顏色,請使用 table-hover 類。你可以嘗試執行以下程式碼來實現 table-hover 類
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Table</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <table class = "table table-hover table-bordered table-striped"> <caption>Footballer Rank</caption> <thead> <tr> <th>Footballer</th> <th>Rank</th> <th>Country</th> </tr> </thead> <tbody> <tr> <td>Messi</td> <td>1</td> <td>Argentina</td> </tr> <tr> <td>Neymar</td> <td>2</td> <td>Brazil</td> </tr> <tr> <td>Ronaldo</td> <td>3</td> <td>Portugal</td> </tr> </tbody> </table> </body> </html>
廣告
資料結構
網路
關係型資料庫管理系統 (RDBMS)
作業系統
Java
iOS
超文字標記語言 (HTML)
層疊樣式表 (CSS)
Android
Python
C 程式語言
C++ 程式語言
C#
MongoDB
MySQL
JavaScript
PHP