矢印(↓)2 – css arrow-down2 –

下アイコン アイコン

矢印(↓)アイコンの別パターンを作成してみました。ちょっと不恰好ですが、最初はこんなもんかな・・・

ソース

html

<div class="arrow_down2"></div>

css

/* 円 */
.arrow_down2 {
	font-size: 100px;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	border: 0.1em solid #39a9d6;
	border-radius: 100%;
}
/* 長方形 */
.arrow_down2::before {
	position: absolute;
	bottom: 0.6em;
	left: 0.5em;
	width: 0.4em;
	height: 0.5em;
	content: "";
	background-color: #39a9d6;
}
/* 三角 */
.arrow_down2::after {
	position: absolute;
	bottom: 0.3em;
	left: 0.3em;
	width: 0;
	height: 0;
	content: "";
	border-top: 0.4em solid #39a9d6;
	border-left: 0.4em solid transparent;
	border-right: 0.4em solid transparent;
}
タイトルとURLをコピーしました