HTML Pre

by jpeter06

HTML

<div class="containerChat">

<p class="chatMessage left">hola Mundo asdf asd asd fas fas fas dfas fas fas
Soy super JP
bueno no tanto :-D</p>
<pre class="chatMessage right">hola Mundo
Soy super JP
bueno no tanto :-D</pre>
<pre class="chatMessage left">hola Mundo
Soy super JP
bueno no tanto :-D</pre>
</div>

CSS

html, body { margin:0; padding:0;
}

.containerChat{
  display:flex;
  gap:0.5rem;
  flex-direction:column;
  align-items: stretch;
}
.chatMessage {
  background-color: green;
  white-space: pre-line;
  flex-grow:0;
  margin: 0;
  font-family:arial;
  color: white;
  border-radius: .8rem;
  padding: .4rem;
}

.left{
  align-self: start;
}
.right{
  align-self: end;
}