---
title: "Essentials Tables"
description: "Ghost offers a straightforward method for creating simple tables. Additionally, the theme provides a way to use responsive tables."
url: "https://www.priority.vision/docs/guides/essentials-tables"
scope: shared
appliesTo: [Essence, Scope, Thoughts, Feed, Moment, Aspect, OnFlow, Thesis, Format]
lastUpdated: 2026-09-18
---

# Tables

Ghost offers a straightforward method for creating simple tables. Additionally, the theme provides a way to use responsive tables.

## Simple Table

To create a simple table in Ghost, use Markdown syntax to define your table. For example:

```markdown
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1    | Data 1   | Data 2   |
| Row 2    | Data 3   | Data 4   |
```

## Responsive Table

To make a table responsive, add a wrapper div around the table with the class `responsive-table`. For example:

```html
<div class="responsive-table">

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1    | Data 1   | Data 2   |
| Row 2    | Data 3   | Data 4   |

</div>
```

## Documentation Index
> Fetch the complete documentation index at: https://www.priority.vision/docs/llms.txt
> Use this file to discover all available pages before exploring further.
