Set space between divs

后端 未结 3 1021
没有蜡笔的小新
没有蜡笔的小新 2020-12-28 15:23

I have two divs like this:

3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-28 15:43

    For folks searching for solution to set spacing between N divs, here is another approach using pseudo selectors:

    div:not(:last-child) {
      margin-right: 40px;
    }
    

    You can also combine child pseudo selectors:

    div:not(:first-child):not(:last-child) {
      margin-left: 20px;
      margin-right: 20px;
    }
    

提交回复
热议问题