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

前端 未结 7 792
小鲜肉
小鲜肉 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:29

    You need a block container with a defined height, same value for line-height and image with vertical-align:middle; It should work.

    Hello there !
    
    
    This is an image
    Hi ! #container { height:100px; line-height:100px; } #container img { vertical-align:middle; max-height:100%; }

提交回复
热议问题