HTML and CSS [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

HTML and CSS [Electronic resources] - نسخه متنی

Molly E. Holzschlag

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید






Grouping Table Rows


You can also group table rows using three elements that define the row groups based on function. The elements include thead, tfoot, and tbody for table head, table foot, and table body, respectively (see Example 4-16).

Example 4-16. Grouping table rows


<thead>
<tr>
<th>Table Head</th>
<th>Table Head</th>
<th>Table Head</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Table Foot</td>
<td>Table Foot</td>
<td>Table Foot</td>
</tfoot>
<tbody>
<tr>
<td>Table Body</td>
<td>Table Body</td>
<td>Table Body</td>
</tr>
</tbody>
</tr>
</table>

Browser support is more consistent for these elements. Figure 4-17 shows the results.

Figure 4-17. Grouping by rowyou'll notice that I've defined the foot in the middle of the table, but the row defined as the table foot still appears at the foot of the table.


/ 198