- Published on
Issue 03 - Unable to load MDX inline images
- Authors
- Name
- MDolce
Table of Contents
Error we need to solve:
Unable to load MDX inline images
Assumptions: There are two ways to load inline MDX images:
---
title: Displaying Images in MDX
date: 2023-02-15
tags:
- docs
workflow: "docs"
draft: false
layout: PostSimple
images:
- /static/images/backdrop-2.webp
summary: Example of displaying images in MDX, using Next images and a custom layout grid.
---
<div className="-mx-2 flex flex-wrap overflow-hidden xl:-mx-2">
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
<div className="my-1 w-full overflow-hidden px-2 xl:my-1 xl:w-1/2 xl:px-2">

</div>
</div>
What we did
Added an image to a table
Images did not appear
Tailwind CSS Grid System | Not Mapped Component | Updating Tailwind Config | Outcome |
---|---|---|---|
![]() | ![]() |
Solution?
TBD
REF(s):
TBD