How to write a caption under an image?

后端 未结 9 1651
心在旅途
心在旅途 2020-11-29 19:55

I have two images that need to kept inline; I want to write a caption under each image.

9条回答
  •  遥遥无期
    2020-11-29 20:35

    To be more semantically correct and answer the OPs orginal question about aligning them side by side I would use this:

    HTML

    Caption 1
    Caption 2

    CSS

    .items{
    text-align:center;
    margin:50px auto;}
    
    
    .items figure{
    margin:0px 20px;
    display:inline-block;
    text-decoration:none;
    color:black;}
    

    https://jsfiddle.net/c7borg/jLzc6h72/3/

提交回复
热议问题