要素の後ろにアイコンを付ける

要素の後ろにアイコンを付ける

aタグに付ける別窓指定アイコンなど、要素の後ろに画像を入れたい場合に用いる。

span {
	position: relative;
	&:after {
		background: url(../images/common/icon-window.png) no-repeat;
		@include background-size(cover);
		bottom: 50%;
		content: '';
		display: inline-block;
		height: 10px;
		margin-bottom: -9px;
		position: absolute;
		right: 5%;
		width: 12px;
	}
}