这是标记:
<p>
<a href="http://www.domain.com/stack-2015-overflow-648198/">
<img src="link to image">
See also: Stack 2015 and Overflow Review </a>
</p>
内容是由AJAX加载的,但我认为它仍然应该用CSS设置样式。这是我的CSS:
a[href*="www.domain.com"] img { display: none; }
但它不起作用。我错过了什么?
答案 0 :(得分:-2)
我已经使用CSS很长一段时间了,我从来没有见过这样的东西。您应该将类或ID应用于锚标记,然后将其引用为:
#anchorId>img {
display: none;
}