Using Markdown, how do I center an image and its caption?

前端 未结 7 794
小鲜肉
小鲜肉 2021-01-31 08:08

I want to end up with:

Hello there!

      
      This is an image

Hi!

Where the image and the text This is an image

相关标签:
7条回答
  • 2021-01-31 08:37

    I'm surprised no one mentioned this way:

    Hello there!
    
    <p align="center">
    
      <img src="">
      This is an image
    
    </p>
    
    Hi!
    
    0 讨论(0)
提交回复
热议问题