# Add picture in table

**URL:** https://meta.discourse.org/t/add-picture-in-table/179412
**Category:** Support
**Created:** [February 12, 2021, 4:31am UTC](https://meta.discourse.org/t/add-picture-in-table/179412 "2021-02-12T04:31:40Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Bank\_Live](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bank_live/32/75893_2.png) [@Bank\_Live](https://meta.discourse.org/u/Bank_Live)
#### Post date: [February 12, 2021, 4:31am UTC](https://meta.discourse.org/t/add-picture-in-table/179412/1 "2021-02-12T04:31:40Z")

</div>

I need add picture to table. We can?

 ![ภาพ](https://global.discourse-cdn.com/meta/original/3X/4/d/4d7565309d70df6bcb2011a933a4ba259537a540.png)

same sample

 ![ภาพ](https://global.discourse-cdn.com/meta/original/3X/9/5/95f1897c40f53aa88dd05392f771aadd2aed91ed.png)

---

<div class="post-metadata">

### Author: ![david](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/david/32/157490_2.png) [@david](https://meta.discourse.org/u/david)
#### Post date: [February 12, 2021, 2:42pm UTC](https://meta.discourse.org/t/add-picture-in-table/179412/3 "2021-02-12T14:42:21Z")

</div>

It is possible, but requires a little fiddling with the markdown. For example:

| normal | with theme component |
| --- | --- |
| ![alttext](https://global.discourse-cdn.com/meta/original/3X/7/b/7b8b5200494d19732663fe2dce2beefc5fc43a33.webp) | ![alttext](https://global.discourse-cdn.com/meta/original/3X/2/d/2d060e4a585c11b36bd976ab382b3196a384ef77.webp) |

```plaintext
|normal|with theme component|
|--|--|
| ![alttext\|368x500, 50%](upload://hCVdIyePiU7syhJVHn7JFgmYvqH.webp) | ![alttext\|368x500,50%](upload://6qisyXOq8570PSXaXVyMoxduGRV.webp) |

```

Note that I had to ‘escape’ the pipe character (`|`) with a backslash inside the image markdown, so that it didn’t break the table.

Alternatively, you can do it 100% in HTML:

| Heading 1 | Heading 2 |
| --- | --- |
| ![](https://global.discourse-cdn.com/meta/original/3X/7/b/7b8b5200494d19732663fe2dce2beefc5fc43a33.webp) | ![](https://global.discourse-cdn.com/meta/original/3X/2/d/2d060e4a585c11b36bd976ab382b3196a384ef77.webp) |

```plaintext
<table>
<thead>
  <th>Heading 1</th><th>Heading 2</th>
</thead>
<tr>
  <td><img src="https://global.discourse-cdn.com/meta/original/3X/7/b/7b8b5200494d19732663fe2dce2beefc5fc43a33.webp" width=200></td>
  <td><img src="https://global.discourse-cdn.com/meta/original/3X/2/d/2d060e4a585c11b36bd976ab382b3196a384ef77.webp" width=200/></td>
</tr>
</table>

```

---

<div class="post-metadata">

### Author: ![Bank\_Live](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bank_live/32/75893_2.png) [@Bank\_Live](https://meta.discourse.org/u/Bank_Live)
#### Post date: [February 13, 2021, 3:27am UTC](https://meta.discourse.org/t/add-picture-in-table/179412/4 "2021-02-13T03:27:51Z")

</div>

Thank you very much

 ![image](https://global.discourse-cdn.com/meta/original/3X/d/a/da41f2d63e7edaa897ff6ee3e659fef1105b932d.jpeg)

 ![image](https://global.discourse-cdn.com/meta/original/3X/5/7/57438b3c66710e0fb2154828696f95c6f2b10abf.jpeg)

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [March 15, 2021, 3:27am UTC](https://meta.discourse.org/t/add-picture-in-table/179412/5 "2021-03-15T03:27:54Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
