علامة <th> HTML


مثال

جدول HTML بسيط يتكون من ثلاثة صفوف وخلايا رأس وأربع خلايا بيانات:

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

المزيد من الأمثلة "جربها بنفسك" أدناه.


التعريف والاستخدام

تحدد العلامة <th>خلية رأس في جدول HTML.

يحتوي جدول HTML على نوعين من الخلايا:

  • خلايا الرأس - تحتوي على معلومات الرأس (تم إنشاؤها باستخدام <th>العنصر)
  • خلايا البيانات - تحتوي على بيانات (تم إنشاؤها باستخدام عنصر <td> )

يكون النص في <th>العناصر عريضًا ويتم توسيطه افتراضيًا.

يكون النص الموجود في عناصر <td> عاديًا ومحاذاة إلى اليسار افتراضيًا.


دعم المتصفح

Element
<th> Yes Yes Yes Yes Yes

صفات

Attribute Value Description
abbr text Specifies an abbreviated version of the content in a header cell
colspan number Specifies the number of columns a header cell should span
headers header_id Specifies one or more header cells a cell is related to
rowspan number Specifies the number of rows a header cell should span
scope col
colgroup
row
rowgroup
Specifies whether a header cell is a header for a column, row, or group of columns or rows

السمات العالمية

تدعم <th>العلامة أيضًا السمات العامة في HTML .


سمات الحدث

تدعم <th>العلامة أيضًا سمات الحدث في HTML .



مزيد من الأمثلة

مثال

كيفية محاذاة المحتوى داخل <th> (باستخدام CSS):

<table style="width:100%">
  <tr>
    <th style="text-align:left">Month</th>
    <th style="text-align:left">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

مثال

كيفية إضافة لون الخلفية إلى خلية رأس الجدول (باستخدام CSS):

<table>
  <tr>
    <th style="background-color:#FF0000">Month</th>
    <th style="background-color:#00FF00">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
 </table>

مثال

كيفية تعيين ارتفاع خلية رأس الجدول (باستخدام CSS):

<table>
  <tr>
    <th style="height:100px">Month</th>
    <th style="height:100px">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

مثال

كيفية تحديد عدم التفاف الكلمات في خلية رأس الجدول (باستخدام CSS):

<table>
  <tr>
    <th>Month</th>
    <th style="white-space:nowrap">My Savings for a new car</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

مثال

كيفية محاذاة المحتوى عموديًا داخل <th> (باستخدام CSS):

<table style="width:50%;">
  <tr style="height:100px">
    <th style="vertical-align:bottom">Month</th>
    <th style="vertical-align:bottom">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

مثال

كيفية تعيين عرض خلية رأس الجدول (باستخدام CSS):

<table style="width:100%">
  <tr>
    <th style="width:70%">Month</th>
    <th style="width:30%">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>

مثال

كيفية إنشاء رؤوس الجدول:

<table>
  <tr>
    <th>Name</th>
    <th>Email</th>
    <th>Phone</th>
  </tr>
  <tr>
    <td>John Doe</td>
    <td>[email protected]</td>
    <td>123-45-678</td>
  </tr>
</table>

مثال

كيفية إنشاء جدول مع تسمية توضيحية:

<table>
  <caption>Monthly savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

مثال

كيفية تحديد خلايا الجدول التي تمتد على أكثر من صف أو عمود واحد:

<table>
  <tr>
    <th>Name</th>
    <th>Email</th>
    <th colspan="2">Phone</th>
  </tr>
  <tr>
    <td>John Doe</td>
    <td>[email protected]</td>
    <td>123-45-678</td>
    <td>212-00-546</td>
  </tr>
</table>

الصفحات ذات الصلة

دروس HTML: جداول HTML

مرجع DOM HTML: كائن TableHeader

دروس CSS: جداول الأنماط


إعدادات CSS الافتراضية

ستعرض معظم المتصفحات <th>العنصر بالقيم الافتراضية التالية:

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: center;
}