1 つの div で 2 つのクラスを使用しています。私が抱えている問題は、2 つの異なるtitle
div があり、各タイトルに独自のイメージがあることです。各タイトルに独自の画像が表示されない理由がわかりません。両方の画像が最初の div に積み上げられます。何が間違っていますか?
CSS
.title {
border: 1px solid #AAA;
padding: 4px 22px;
}
.icon-img1:before {
position: absolute;
top: 4px;
left: 4px;
content: "";
background: url(http://png-4.findicons.com/files/icons/366/icomic/24/images.png);
width: 24px;
height: 24px;
}
.icon-img2:before {
position: absolute;
top: 4px;
left: 4px;
content: "";
background: url(http://png-5.findicons.com/files/icons/753/gnome_desktop/24/gnome_emblem_photos.png);
width: 24px;
height: 24px;
}
HTML
<div class="title icon-img1">Title 1</div>
<div class="title icon-img2">Title 2 </div>