Distributing images evenly & horizontally in a Div via CSS

后端 未结 6 614
盖世英雄少女心
盖世英雄少女心 2020-12-23 13:25

I\'m having a difficult time finding specific info for my case. I\'d like to distribute 3 image thumbnails across a 940px div in order to line up with the rest of my content

6条回答
  •  执念已碎
    2020-12-23 13:33

    The answer is very simple, just use:

    .container {
        display: flex;
        justify-content:space-between;
    }
    

    That's all!

提交回复
热议问题