How do I automatically add spacing between divs without using percentage?

前端 未结 7 1342
别跟我提以往
别跟我提以往 2021-01-22 19:25

I have a few divs aligned horizontally. How do I make the spacing between them automatic so that if I resize the screen or add another div, there will be equal spacing between d

7条回答
  •  抹茶落季
    2021-01-22 20:07

    Here you can find a solution with flexbox:

    .container {
        display:flex;
        justify-content:space-between;
    }
    .item {
        background:#000;
        height:50px;
        width:120px;
    }

    More information about using flexbox you can find here: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

提交回复
热议问题