2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

擬似要素での画像挿入するときのスタイル

Last updated at Posted at 2016-02-24

擬似要素で画像(ボタンのマークとか)を表示させるときよくやるやつ

CSSの書き方をメモ

ボタンにグラデーションとか使ってるときは、いろいろめんどくさいので
:before :after擬似要素を使って背景画像を指定
image-url()はいつも使うようにする
$srcimage-width()はSPサイトのときに使用
└ PCのときはサイズ違いのアイコンを使いまわすことが多いので、直接サイズ指定

scss

.title{
	$src: 'img/plus-icon.png';
	text-decoration: underline;
	color: #206fb8;
	&:before{
		padding-right: 5px;
		content: "";
		display: inline-block;
		position: relative;
		top: 2px;
		width: image-width($src)/2;
		height: image-height($src)/2;
		background: image-url($src) no-repeat center center;
		background-size: image-width($src)/2 image-height($src)/2;
	}
	&.active:before{
		background-image: image-url('img/minus-icon.png');
	}
}

content: "url()"でも画像を表示できるが、サイズの指定ができないので上のように擬似要素のバックグラウンドで画像を指定するのがベター

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?