# Markdown Tables

## How to align Markdown tables

After the header row, you can one more row with triple-dash.

triple-dash – align-left

```md
---
```

adding a colon after triple-dash – right-align

```md
---:
```

adding a color before and after triple-dash – center-align

```md
:---:
```

```md
| Header 1    | Header 2      | Header 3    |
| ---         | :---:         |   ---:      |
| Left-align  |  Center-align | Right-align |
```

| Header 1   |   Header 2   |    Header 3 |
| ---------- | :----------: | ----------: |
| Left-align | Center-align | Right-align |

## Links

* [Table-cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#tables)
