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

ブートストラップテーブルストライプクラス


Bootstrapにテーブルストライプクラスを実装するには、次のコードを実行してみてください。

<!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-striped">
         <caption>Footballer Rank</caption>
         <thead>
            <tr>
               <th>Footballer</th>
               <th>Rank</th>
               <th>Country</th>
            </tr>
         </thead>
      </table>
   </body>
</html>

  1. C#のコンソールクラス

    C#のConsoleクラスは、コンソールアプリケーションの標準の入力、出力、およびエラーストリームを表すために使用されます。 C#のコンソールクラスプロパティの例をいくつか見てみましょう- Console.CursorLeftプロパティ C#でコンソールのCursorLeftを変更するには、Console.CursorLeftプロパティを使用します。 例 例を見てみましょう- using System; class Demo {    public static void Main (string[] args) {       Cons

  2. C#のタプルクラス

    クラスメソッドから複数の値を返す場合は、C#タプルを使用します。 C#<でタプルを作成するために、このクラスは静的メソッドを提供します。 .NET4.0で導入されたタプル。 例 ここで、C#でタプルを実装する例を見てみましょう- using System; public class Demo {    public static void Main(string[] args) {       Tuple<int, string> tuple = new Tuple<int, string>(2, "Tom&