* Total change I changed the definition and the explanation, and make every possibilies of every logical type, and added some pictures of truth table to make the article and the sentences more understandable. * Article edited I did correct some translation, and also I added link to let people visualize the code and test other attributes on it. I will edit this article when I prepare some new things in it, so it become more understandable.
1.4 KiB
1.4 KiB
title, localeTitle
| title | localeTitle |
|---|---|
| Tables | الجداول |
HTML إنشاء جدول في
ينقسم الجدول إلى صفوف و أعمدة
<tr> يتم تعريف كل صف الجدول بـ
<td> يتم تعريف كل عمود الجدول بـ
عناصر أكثر تعقيدًا كـ HTML أيضًا قد يتضمن جدول
<caption> و <col> و <colgroup> و <thead> و <tfoot> و <tbody>
مثال بسيط على الجدول
| Firstname | Lastname | Age |
|---|---|---|
| Jill | Smith | 50 |
| Eve | Jackson | 94 |
مثال آخر بسيط على الجدول
| Item | Item |
|---|---|
| Apple | 10 |
| Peach | 15 |
| Watermelon | 3 |