矢印(↓) – css arrow-down –

下アイコン アイコン

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

ソース

html

<div class="arrow_down"></div>

css

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