This question might seem basic to those who are familiar with CSS (unlike me lol). I'm currently working on incorporating speech balloons into my website using this code from jsfiddle. However, I encountered an issue when the text inside the balloon is short. For instance, in the code provided above, if we change the content of the "bubble you" balloon to something like:
<div class="bubble you">Hi.</div>
You'll notice that the balloon remains on the same horizontal line as the previous one, which looks unattractive and odd. I want the balloons to stack vertically (one below the other) even when the message is brief, such as a simple 'Hi'... What CSS properties do I need to modify or add to achieve this?