私は次のものを持っています:
.mainClass a.customizeIt span {
background: transparent url('../images/myimage.png') no-repeat;
color: #ffffff;
display: block;
font-size: 13px;
}
上記の別のバージョンを実行して背景画像を使用しない方法はありますか?
.mainClass a.customizeIt span {
color: #ffffff;
display: block;
font-size: 13px;
}
要素で2番目のバージョンをどのように参照する必要がありますか?
-編集-
背景がなく、色、表示、フォントサイズを再利用できるように、次のことは可能ですか?
.mainClass a.customizeIt a.no-bg span {
background: none;
}