cssのみで 音量1 アイコンを作成してみました。タグ1つでは出来ませんでした・・・
ソース
html
<div class="volume"><div class="volume1"></div></div>
css
/* 本体左 */
.volume {
font-size: 100px;
position: relative;
width: 0.4em;
height: 0.4em;
background-color: #39a9d6;
}
/* 本体右 */
.volume::before {
content: "";
position: absolute;
top: -0.3em;
left: 0;
width: 0;
height: 0;
border-top: 0.5em solid transparent;
border-bottom: 0.5em solid transparent;
border-right: 0.8em solid #39a9d6;
}
/* 音量1 */
.volume1 {
position: absolute;
top: 0;
left: 0.4em;
width: 0.4em;
height: 0.2em;
border-top: 0.1em solid transparent;
border-left: 0.1em solid transparent;
border-right: 0.1em solid #39a9d6;
border-bottom: 0.1em solid transparent;
border-radius: 100%;
}

