cssのみで 「共有」 アイコンを作成してみました。
ソース
html
<div class="share"></div>
css
/* ○ */ .share { font-size: 100px; position: relative; margin: 0.6em 0.1em 0; width: 0.4em; height: 0.4em; background-color: #39a9d6; border-radius: 100%; box-shadow: 0.8em -0.6em 0 0 #39a9d6, 0.8em 0.6em 0 0 #39a9d6; } /* ライン */ .share::before { content: ""; position: absolute; top: -0.625em; left: 0.6em; width: 0.1em; height: 1em; background-color:#39a9d6; -webkit-transform: rotate(53deg); transform: rotate(53deg); } /* ライン */ .share::after { content: ""; position: absolute; top: 0.025em; left: 0.6em; width: 0.1em; height: 1em; background-color:#39a9d6; -webkit-transform: rotate(-53deg); transform: rotate(-53deg); }