What ways can I put images in a grid-like format?

后端 未结 2 509
余生分开走
余生分开走 2021-02-05 22:04

I have about 12-15 images that I want to align together in a grid, with text under each image. I thought about using a table, but I hear that tables aren\'t the best way to go t

2条回答
  •  梦谈多话
    2021-02-05 22:16

    HTML:

    Some image

    Description of above image

    Another image

    Description of above image

    CSS:

    .floated_img
    {
        float: left;
    }
    

    You'll probably want some more styles, but that should do basically what you want.

提交回复
热议问题