How to make a comment block with this triangle?

1 answer 1

Result

.message { position: relative; margin: 30px auto; padding: 10px; width: 80%; min-height: 10px; font-family: sans-serif; background: rgb(242, 251, 255); border: 2px solid rgb(220, 223, 223); } .message:before { content: ''; position: absolute; top: -20px; left: 15px; border: 10px solid transparent; border-bottom: 10px solid rgb(220, 223, 223); border-left: 10px solid rgb(220, 223, 223); z-index: -1; } .message:after { content: ''; position: absolute; top: -15px; left: 17px; border: 10px solid transparent; border-bottom: 10px solid rgb(242, 251, 255); border-left: 10px solid rgb(242, 251, 255); z-index: 1; } 
 <div class="message">Привет, Верунь! Ну и т.д.</div>