I designed a basic div structure to house my comments section.
To add a creative touch, I'd like to style it like a speech bubble with a triangle on the left side or any other visual effect that gives the illusion of a speech bubble emerging from the left.
Is there a way I can achieve this without resorting to the use of an image?
illustration
https://i.sstatic.net/XSIz3.png
code snippet in HTML
<div class='comment'></div>
code snippet in CSS
.comment {
margin-left: 10px;
height: 80px;
display: inline-block;
color: white;
width: 400px;
border: 1px solid white;
padding: 10px;
border-radius: 5px;
overflow: hidden;
}