align images side by side in html

前端 未结 7 1238
太阳男子
太阳男子 2020-12-05 19:40

I want 3 images side by side with caption, at the moment I have 3 images going from top to bottom, with the caption on the left, not on the centre. How do I make the images

7条回答
  •  囚心锁ツ
    2020-12-05 20:23

    Try this.

    CSS

    .imageContainer {
        float: left;
    }
    
    p {
        text-align: center;
    }
    

    HTML

    This is image 1

    This is image 2

    This is image 3

提交回复
热议问题