Цвет фона div, которые были изменены с помощью flexbox - PullRequest
0 голосов
/ 17 марта 2020

Может кто-нибудь предложить, как установить полный цвет фона для div, который выровнен с flexbox?

Вот как я его настроил:

enter image description here

.small-box {
    width: 26%;
    background-color: #282c34;
    overflow: auto;
}

.main-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-bottom: 40px;
}

Вот как это выглядит: enter image description here

Вот как это должно выглядеть:

enter image description here

Спасибо!

1 Ответ

1 голос
/ 17 марта 2020

Удалить width: 26%;

.small-box {
  background-color: #282c34;
  overflow: auto;
  color: white;
  padding: 5px;
}

.main-box {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 40px;
}
<div class="main-box">
  <div class="small-box">
    This is some test text. This is some test text. This is some test text. This is some test text. This is some test text.
  </div>
  <div class="small-box">
    This is some test text. This is some test text. This is some test text. This is some test text. This is some test text.
  </div>
  <div class="small-box">
    This is some test text. This is some test text. This is some test text. This is some test text. This is some test text.
  </div>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...