How to add space between elements so they fill their container div?

前端 未结 2 1943
青春惊慌失措
青春惊慌失措 2020-12-06 10:42

I want to add space between spans so that the leftmost and rightmost spans will be close to the edges of the inner div. I\'ve tried to add the following ru

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-06 11:19

    You can do this with Flexbox and justify-content: space-between.

    .content {
      display: flex;
      justify-content: space-between;
      max-width: 400px;
      margin: 0 auto;
      background: #A0C5E8;
      padding: 10px 0;
    }
    
    span {
      width: 50px;
      height: 50px;
      background: black;
    }

提交回复
热议问题