Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавлена информация о новой фиче ячеек #59

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
44 changes: 44 additions & 0 deletions ru/syntax/tables/multiline.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,47 @@
|| Текст на одну ячейку | \> | Текст ||
|| \^ | \> | Еще текст ||
|#

## Пользовательские размеры ячеек

Размерами ячеек можно управлять с помощью атрибутов.

{% list tabs %}

- Ширина ячейки

Для установки пользовательской ширины ячейки используйте синтаксис `{width=400px}` внутри ячейки.

```markdown
#|
|| **Заголовок1** {width=400px} | **Заголовок2** ||
|| Текст | Текст ||
|#
```

**Результат**

#|
|| **Заголовок1** {style="width: 400px"} | **Заголовок2** ||
|| Текст | Текст ||
|#

- Высота ячейки

Для установки пользовательской высоты ячейки используйте синтаксис `{height=100px}` внутри ячейки.

```markdown
#|
|| **Заголовок1** {height=100px} | **Заголовок2** ||
|| Текст | Текст ||
|#
```

**Результат**

#|
|| **Заголовок1** {style="height:100px"} | **Заголовок2** ||
|| Текст | Текст ||
|#

{% endlist %}
Loading