-
Notifications
You must be signed in to change notification settings - Fork 636
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавляет плейсхолдер
columnheader
(#4605)
- Loading branch information
1 parent
58dfba5
commit bf55dce
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: "`columnheader`" | ||
description: "Роль заголовка ячейки или строки таблицы и обычной сетки." | ||
authors: | ||
- doka-dog | ||
related: | ||
- a11y/role-row | ||
- a11y/role-table | ||
- html/tables | ||
tags: | ||
- doka | ||
- placeholder | ||
--- | ||
|
||
## Кратко | ||
|
||
[Роль структуры документа](/a11y/aria-roles/#roli-struktury-dokumenta) из [WAI-ARIA](/a11y/aria-intro/#specifikaciya) для заголовка ячейки или строки таблицы и обычной сетки. | ||
|
||
В HTML эта роль есть по умолчанию у [`<th>`](/tables/#th) с атрибутом `scope="col`. | ||
|
||
## Как пишется | ||
|
||
Задайте тегу `role="columnheader"`, лучше всего [`<div>`](/html/div/) или [`<span>`](/html/span/). В большинстве случаев используйте тег `<th scope="col">`. | ||
|
||
Элемент `columnheader` можно вкладывать в контейнер с ролью [`grid`](/a11y/role-grid/) или [`table`](/a11y/role-table/), которая есть по умолчанию у [`<table>`](/html/tables/). | ||
|
||
Внутри заголовка с `columnheader` должна находится минимум одна строка с [`row`](/a11y/role-row/). Эта роль по умолчанию есть у тега [`<tr>`](/html/tables/#tr). | ||
|
||
Если это обычная и древовидная сетка, то у элемента с `columnheader` могут быть атрибуты [`aria-readonly`](/a11y/aria-readonly/) и [`aria-required`](/a11y/aria-required/). | ||
|
||
Элементам с ролью `columnheader` также можно задавать все [глобальные ARIA-атрибуты](/a11y/aria-attrs/#globalnye-atributy) и ещё один атрибут виджета [`aria-sort`](/a11y/aria-sort/). |