I am having problems with centering an image in a markdown card.
- type: markdown
content: >
![Amazon Music](/local/images/amazonmusic.jpeg)
How to make this image centered ?
I am having problems with centering an image in a markdown card.
- type: markdown
content: >
![Amazon Music](/local/images/amazonmusic.jpeg)
How to make this image centered ?
Try HTML/CSS inside:
<div style="text-align:center">
<img src="/local/images/amazonmusic.jpeg" alt="Amazon Music"/>
</div>