Arrow

by myrluk3

HTML

<div class="arrow-div"></div>

CSS

.arrow-div {
	position: relative;
	background: #f1f1f1;
	border: 1px solid #DDDDDD;
}
.arrow-div:after, .arrow-div:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow-div:after {
	border-color: rgba(241, 241, 241, 0);
	border-right-color: #f1f1f1;
	border-width: 10px;
	margin-top: -10px;
}
.arrow-div:before {
	border-color: rgba(221, 221, 221, 0);
	border-right-color: #DDDDDD;
	border-width: 11px;
	margin-top: -11px;
}