Bootstrap 上下文类
bootstraphtmljavascriptjquery
Bootstrap 上下文类允许您更改表格行或单个单元格的背景颜色。
以下是类 −
类 | 描述 |
---|---|
.active | 将悬停颜色应用于特定行或单元格 |
.success | 表示成功或积极行动 |
.warning | 表示可能需要注意的警告 |
.danger | 表示危险或潜在的负面行动 |
示例
以下是 active 类的示例−
示例
<!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>