Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

ブートストラップコンテキストクラス


Bootstrap Contextual 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>

  1. HTML<th>colspan属性

    要素のcolspan属性は、ヘッダーセルがまたがる列の数を設定するために使用されます。 以下は構文です- <th colspan="num"> 上記のnumは、ヘッダーセルがまたがる列の数です。 ここで、要素-のcolspan属性を実装する例を見てみましょう。 例 <!DOCTYPE html> <html> <head> <style> table, th, td {    border: 2px solid green; } </style> </head> &

  2. HTML<colgroup> タグ

    タグは、テーブル内の1つまたは複数の列のグループです。すべての列のスタイルを設定します。 以下は、タグ-の属性です。 スパン −列グループがスパンする必要がある列の数はspan属性で設定されます 例 タグ-を実装する例を見てみましょう。 <!DOCTYPE html> <html> <head> <style>    table, th, td {       border: 2px solid black;    } </style> </head&