---
metadata:
  - name: generator
    content: Diplodoc Platform v5.54.1
alternate:
  - https://diplodoc.com/docs/en/syntax/interactive-elements/tabs.md
  - https://diplodoc.com/docs/ru/syntax/interactive-elements/tabs.md
  - href: en/syntax/interactive-elements/tabs.md
    type: text/markdown
    title: Markdown version
  - href: ../../llms.txt
    type: text/markdown
    title: llms.txt
updatedAt: '2026-08-11T13:35:17.000Z'
---
> **Documentation Index:** Fetch the complete configuration index at https://diplodoc.com/docs/en/llms.txt

# Tabs

Use tabs for mutually exclusive sections. For example, to separate instructions for different operating systems.

<!-- source: en/_includes/blank-lines-note.md -->
{% note warning %}

The construct works only if it is separated by blank lines — outside (before the opening and after the closing tag) and inside (between the tags and the content). Otherwise, it will not be processed and will remain plain text.

{% endnote %}
<!-- endsource: en/_includes/blank-lines-note.md -->

```markdown
{% list tabs %}

- Название таба 1

  Текст таба 1.

  * Можно использовать списки.
  * И **другую** разметку.

- Название таба 2

  Текст таба 2.

{% endlist %}
```

**Result:**

{% list tabs %}

- Tab 1 title

  Tab 1 text.

  * You can use lists.
  * And **other** markup.

- Tab 2 title

  Tab 2 text.

{% endlist %}

<!-- source: en/_includes/common-params-note.md -->
{% note info %}

Tabs, accordions, radio buttons, and dropdowns share common properties described on the page [Common parameters](https://diplodoc.com/docs/en/syntax/interactive-elements/common-params.md).

{% endnote %}
<!-- endsource: en/_includes/common-params-note.md -->
