How can I align text directly beneath an image?

前端 未结 5 1403
臣服心动
臣服心动 2020-12-01 05:05

I used to know how to put an image on top and then justify the text below the image so that it stays within the borders of the width of the image. However, now I have no id

5条回答
  •  孤独总比滥情好
    2020-12-01 05:51

    Your HTML:

    sometext

    Some text

    If you know the width of your image, your CSS:

    .img-with-text {
        text-align: justify;
        width: [width of img];
    }
    
    .img-with-text img {
        display: block;
        margin: 0 auto;
    }
    

    Otherwise your text below the image will free-flow. To prevent this, just set a width to your container.

提交回复
热议问题