Bootstrap的上下文類別可讓您變更表格行或單一儲存格的背景顏色。
以下是類別:
類別 | 描述 |
---|---|
描述 | |
.active | 將懸停顏色套用至特定行或單元格 |
#.success |
<!DOCTYPE html> <html> <head> <title>Bootstrap Table</title> <link href = "/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <table class = "table"> <thead> <tr> <th>Subject</th> <th>Marks</th> <th>Student</th> </tr> </thead> <tbody> <tr class = "active"> <td>Maths</td> <td>90</td> <td>Amit</td> </tr> <tr> <td>Science</td> <td>80</td> <td>Aman</td> </tr> <tr> <td>English</td> <td>85</td> <td>Rahul</td> </tr> </tbody> </table> </body> </html>
以上是引導上下文類的詳細內容。更多資訊請關注PHP中文網其他相關文章!