كيفية إنشاء: جدول مقارنة

تعلم كيفية إنشاء جدول مقارنة باستخدام CSS.

Features Basic Pro
Sample text
Sample text
Sample text
Sample text
Sample text

جرب بنفسك

كيفية إنشاء جدول مقارنة

الخطوة الأولى - إضافة HTML:

<!-- Font Awesome إشارات الأيقونات -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<table>
  <tr>
    <th style="width:50%">Features</th>
    <th>Basic</th>
    <th>Pro</th>
  </tr>
  <tr>
    <td>Sample text</td>
    <td><i class="fa fa-remove"></i></td>
    <td><i class="fa fa-check"></i></td>
  </tr>
  <tr>
    <td>Sample text</td>
    <td><i class="fa fa-check"></i></td>
    <td><i class="fa fa-check"></i></td>
  </tr>
</table>

الخطوة الثانية - إضافة CSS:

/* 设置表格样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}
/* 设置表头和表数据的样式 */
th, td {
  text-align: center;
  padding: 16px;
}
th:first-child, td:first-child {
  text-align: left;
}
/* 斑马条纹表格行 */
tr:nth-child(even) {
  background-color: #f2f2f2
}
.fa-check {
  لون: أخضر;
}
.fa-remove {
  لون: أحمر;
}

جرب بنفسك