当您在 div 中有图像时,请说:
<div class="reflection">
<img src="example" alt="" />
</div>
您只能使用引用特定元素.reflection img { // do stuff here }
我只想引用background:
一个 CSS 元素,因为我正在使用模板,并且所有图像都使用 CSS 而不是 HTML 显示,如下所示:
.exampleClass { background: url("path here") no-repeat scroll 0 0 transparent; }
如何在 CSS 中引用该类的背景?