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

CSSで比較表を作成するにはどうすればよいですか?


CSSを使用してレスポンシブテーブルを作成するためのコードは、次のとおりです-

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
   table {
      border-collapse: collapse;
      border-spacing: 0;
      width: 100%;
      border: 1px solid #ddd;
   }
   th, td {
      text-align: center;
      padding: 16px;
      font-weight: bold;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 18px;
   }
   th:first-child, td:first-child {
      text-align: left;
   }
   tr:nth-child(even) {
      background-color: #f2f2f2
   }
</style>
</head>
<body>
<h1 style="text-align: center;">Comparison Table Example</h1>
<table>
<tr>
<th style="width:50%">Features</th>
<th>Basic</th>
<th>Pro</th>
</tr>
<tr>
<td>Free</td>
<td>Yes</td>
<td>No</td>
</tr>
<tr>
<td>Customer Support</td>
<td>No</td>
<td>Yes</td>
</tr>
<tr>
<td>Validity</td>
<td>1 Year</td>
<td>Lifetime</td>
</tr>
<tr>
<td>Warranty</td>
<td>No</td>
<td>5 Years</td>
</tr>
</table>
</body>
</html>

出力

上記のコードは次の出力を生成します-

CSSで比較表を作成するにはどうすればよいですか?


  1. CSSを使用してレスポンシブ価格表を作成するにはどうすればよいですか?

    CSSを使用してレスポンシブ価格表を作成するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <style>    * {       box-sizing: border-box;    }    body { &n

  2. CSSで矢印を作成するにはどうすればよいですか?

    CSSで矢印を作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;