cssのみで 「トグルスイッチ ON」 アイコンを作成してみました。
ソース
html
<div class="toggle_on"></div>
css
/* 背景 */ .toggle_on { font-size: 100px; position: relative; margin: 0.4em auto; width: 1.6em; height: 0.8em; background-color:#39a9d6; border-radius: 0.7em; } /* ○ */ .toggle_on::before { content: ""; position: absolute; top: 0; left: 0.8em; width: 0.6em; height: 0.6em; background-color: #fff; border: 0.1em solid #39a9d6; border-radius: 100%; }