cssのみで 閉じる アイコンを作成してみました。ちょっとアイコンぽくなってきました。
ソース
html
<div class="close"></div>
css
/* 円 */
.close {
font-size: 100px;
position: relative;
width: 1.4em;
height: 1.4em;
border: 0.1em solid #39a9d6;
border-radius: 100%;
}
/* 左 */
.close::before {
position: absolute;
top: 0.2em;
left: 0.6em;
width: 0.2em;
height: 1em;
content: "";
background-color: #39a9d6;
transform: rotate(45deg);
}
/* 右 */
.close::after {
position: absolute;
top: 0.6em;
left: 0.2em;
width: 1em;
height: 0.2em;
content: "";
background-color: #39a9d6;
transform: rotate(225deg);
}
参考サイト

