I need help with CSS as I am new to it and trying to create a speech bubble. However, when the text inside the bubble is long, it overlaps the timestamp. I am currently using `display: inline-block;` in my CSS. Below are snippets of my HTML and CSS code:
.speech-wrapper{
padding: 2px 6px;
}
.chatbox {
display: inline-block;
float:right;
/* other styles */
}
/* more styles */
<div class="speech-wrapper"><div class="chatbox triangle right-top"><div class="txt"><p class="name">Apple TestUser1</p><span>Hi</span><p class="timestamp">10:20 pm</p></div><div class="bubble-arrow"></div></div>
<div class="speech-wrapper"><div class="chatbox_other triangle left-top"><div class="txt"><p class="name">Apple TestUser1</p><span>Hi hegi</span><p class="timestamp">10:20 pm</p></div><span class="bubble-arrow"></span></div>
If you have any insights on how to fix this issue, please share!