cssのみで 「コメント」 アイコンを作成してみました。微妙な感じになってしまいました・・・
ソース
html
<div class="comment"></div>
css
/* ● */ .comment { font-size: 100px; position: relative; width: 1.6em; height: 1.0em; background-color: #39a9d6; border-radius: 1.2em / 0.8em; } /* ▼ */ .comment::before { content: ""; position: absolute; top: 0.8em; left: 0.4em; width: 0; height: 0; border-right: 0.2em solid transparent; border-left: 0.2em solid transparent; border-top: 0.6em solid #39a9d6; -webkit-transform: rotate(30deg); transform: rotate(30deg); }