Эта статья нуждается в редакционном обзоре. Как вы можете помочь.
Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.
HTML элемент подвала таблицы (<tfoot>
) определяющий набор строк суммирующих столбцы таблицы.
Используемый контекст
Content categories | None. |
Допустимое содержание | Ноль или более <tr> элементов. |
Tag omission | The start tag is mandatory. The end tag may be omitted if the <tbody> element is immediately followed by an, eventually implicitly-defined, <tbody> , or if there is no more content in the parent <table> element. |
Разрешенные родительские элементы | A <table> element. The <tfoot> must appear after any <caption> , <colgroup> or <thead> element. It can be before or after all <tbody> and <tr> elements, but not intermixed with them.HTML 4 The <tfoot> element cannot be placed after any <tbody> and <tr> element. This restriction has been softened in HTML5. |
Нормативные документы | HTML5, section 4.9.7 (HTML4.01, section 11.2.3) |
Атрибуты
Этот элемент включает в себя глобальные атрибуты.
align
в HTML 4, в HTML5- Этот атрибут определяет горизонтальное выравнивание содержимого каждой ячейки. Возможные значения:
- left, выравнивание содержимого по левому краю ячейки
- center, выравнивание содержимого по центру ячейки
- right, выравнивание содержимого по правому краю ячейки
- justify, выравнивание по ширине ячейки: добавление пробелов к тексту содержимого ячейки до тех пор, пока содержимое не выровняется от одного края ячейки до другого
- char, выравнивание текстового содержимого по специальному символу с минимальным смещением, определенным
char
иcharoff
аттрибутами Не реализовано (смотрите баг 2212).
Если этот аттрибут не задан, то значением по умолчанию является left.
Note: Do not use this attribute as it is obsolete (not supported) in the latest standard.- To achieve the same effect as the left, center, right or justify values, use the CSS
text-align
property on it. - To achieve the same effect as the char value, in CSS3, you can use the value of the
char
as the value of thetext-align
property Не реализовано.
bgcolor
- Этот атрибут определяет цвет фона каждой ячейки столбца. Это один из 6-ти значного шеснадцатиричного кода определенного в sRGB, предваряется '#'. Может быть использован один из шестнадцати предопределенных строк:
black = "#000000" green = "#008000" silver = "#C0C0C0" lime = "#00FF00" gray = "#808080" olive = "#808000" white = "#FFFFFF" yellow = "#FFFF00" maroon = "#800000" navy = "#000080" red = "#FF0000" blue = "#0000FF" purple = "#800080" teal = "#008080" fuchsia = "#FF00FF" aqua = "#00FFFF" Usage note: Do not use this attribute, as it is non-standard and only implemented some versions of Microsoft Internet Explorer: the<tfoot>
element should be styled using CSS. To give a similar effect to the bgcolor attribute, use the CSS propertybackground-color
, on the relevant<td>
or<th>
elements.
char
в HTML 4, в HTML5- This attribute is used to set the character to align the cells in a column on. Typical values for this include a period (.) when attempting to align numbers or monetary values. If
align
is not set to char, this attribute is ignored.Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard. To achieve the same effect as thechar
, in CSS3, you can use the character set using thechar
attribute as the value of thetext-align
property Не реализовано.
charoff
в HTML 4, в HTML5- This attribute is used to indicate the number of characters to offset the column data from the alignment characters specified by the char attribute.
Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard.
valign
в HTML 4, в HTML5- Этот атрибут задает вертикальное выравнивание текста в каждой строке ячеек заголовка таблицы. Возможные значения для этого атрибута:
- baseline, which will put the text as close to the bottom of the cell as it is possible, but align it on the baseline of the characters instead of the bottom of them. If characters are all of the size, this has the same effect as bottom.
- bottom, which will put the text as close to the bottom of the cell as it is possible;
- middle, which will center the text in the cell;
- and top, which will put the text as close to the top of the cell as it is possible.
Note: Do not use this attribute as it is obsolete (and not supported) in the latest standard: instead set the CSSvertical-align
property on it.
DOM интерфейс
Этот элемент реализует интерфейс HTMLTableSectionElement
.
Примеры
Пожалуйста обратитесь к странице <table>
для примера <tfoot>
.
Совместимость браузеров
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1.0 | 1.0 (1.7 или ранее) | (Да) | (Да) | (Да) |
align/valign attribute |
1.0 | Нет баг 915 | (Да) | (Да) | (Да) |
char/charoff attribute |
1.0 | Нет баг 2212 | (Да) | (Да) | (Да) |
bgcolor attribute |
Нет | Нет | (Да) | Нет | Нет |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Да) | 1.0 (1.0) | (Да) | (Да) | (Да) |
align/valign attribute |
? | Нет баг 915 | ? | ? | ? |
char/charoff attribute |
? | Нет баг 2212 | ? | ? | ? |
bgcolor attribute |
Нет | Нет | (Да) | Нет | Нет |
Смотри также
- Other table-related HTML Elements:
<caption>
,<col>
,<colgroup>
,<table>
,<tbody>
,<td>
,<th>
,<thead>
,<tr>
; - CSS properties and pseudo-classes that may be specially useful to style the <tfoot> element:
- the
:nth-child
pseudo-class to set the alignment on the cells of the column; - the
text-align
property to align all cells content on the same character, like '.'.
- the