@Galdar
Web, JS, PHP, NGINX, Linux

Как прижимать блоки по разные стороны?

Подскажите, как прижать синий блок вправо, а серый влево?
5d2f0c2894d3c933520892.png

#chatManager{
  font-size: 20px;
  font-family: "Helvetica Neue";
  display: flex;
  flex-flow: row wrap;
  flex-direction: column;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0 10px 0 10px;
  height: 100%;
}
#chatManager p{
  word-wrap: break-word;
  line-height: 17px;
  position: relative;
  padding: 10px 20px;
  border-radius: 25px;
  margin-right: 10px;
  margin-left: 10px;
}
#chatManager p:before, #chatManager p:after{
  content: "";
  position: absolute;
  bottom: 3px;
  height: 16px;
}
#chatManager .from-me {
  color: white;
  background: #0b93f6;
  align-self: flex-end;
  bottom: 0;
  margin-bottom: 5px;
}
#chatManager .from-me:before {
  right: -8px;
  border-right: 20px solid #0b93f6;
  border-bottom-left-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
#chatManager .from-me:after {
  right: -56px;
  width: 26px;
  background: white;
  border-bottom-left-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}
#chatManager .from-them {
  background: #e5e5ea;
  color: black;
  margin-bottom: 5px;
}
#chatManager .from-them:before {
  left: -8px;
  border-left: 20px solid #e5e5ea;
  border-bottom-right-radius: 16px 14px;
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
#chatManager .from-them:after{
  left: 4px;
  width: 26px;
  background: white;
  border-bottom-right-radius: 10px;
  -webkit-transform: translate(-30px, -2px);
  transform: translate(-30px, -2px);
}


Чтобы так получилось
5d2f0cd33ad3c556304756.png
  • Вопрос задан
  • 57 просмотров
Решения вопроса 2
notiv-nt
@notiv-nt
Как ваше ничего? Да, моё тоже
1. Какой из них синий (код)
2. Какой из них серый
3. justify-content: flex-end;
4. https://codepen.io/Varo/pen/gbZzgr
Ответ написан
@Galdar Автор вопроса
Web, JS, PHP, NGINX, Linux
display: flex
align-self: flex-start;
align-self: flex-end;
Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 1
HunteR-VRX
@HunteR-VRX
Помешанный на развитии
один из вариантов - это использование bootstrap-сетки и инициализации класса .justify-content-between
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы