チェックオン – css check on –

チェックONアイコン アイコン

cssのみで チェックオン アイコンを作成してみました。checkboxに使えるかな?

ソース

html

<div class="check_on"></div>

css

/* 枠 */
.check_on {
	font-size: 100px;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	border: 0.1em solid #39a9d6;
	border-radius: 0.1em;
}
/* チェック */
.check_on::before {
	position: absolute;
	top: 0.2em;
	left: 0.1em;
	width: 1em;
	height: 0.5em;
	border-bottom: 0.2em solid #39a9d6;
	border-left: 0.2em solid #39a9d6;
        -webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: "";
}
タイトルとURLをコピーしました