---
title: Tab
description: The Tab component organizes content into sections, displaying one panel at a time.
---
## Default Tab
Note: All examples below require tabs to be [initialized from JavaScript](#init).
```html
1
2
3
```
## Simple Tab
```html
4
5
6
```
## Stacked
Add class modifier `env-tabs--column` to tab stack container to make tabs vertical.
```html
- Tab 7
- Tab 8
- Tab 9
- Tab 10
- Tab 11
7
8
9
10
11
```
## Initiation
```javascript
envision.tabs('.example-tabs');
```