Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

Bootstrap คลาสตามบริบท


Bootstrap Contextual Class ช่วยให้คุณเปลี่ยนสีพื้นหลังของแถวตารางหรือแต่ละเซลล์ได้

ต่อไปนี้เป็นคลาส -

Class
คำอธิบาย
.active
นำสีโฮเวอร์ไปใช้กับแถวหรือเซลล์ที่ต้องการ
.success
บ่งชี้การดำเนินการที่ประสบความสำเร็จหรือในเชิงบวก
.warning
ระบุคำเตือนที่อาจต้องให้ความสนใจ
.danger
ระบุการกระทำที่เป็นอันตรายหรืออาจเป็นลบ

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่างของคลาสที่ใช้งาน −

ตัวอย่าง

<!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>