Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我网站上的所有图像(使用标签显示)上使用该display:none属性。有没有可以做到这一点的 CSS 选择器?或者 jQuery 是最好的方法吗?.gif<img>
display:none
.gif
<img>
这不起作用,但我正在寻找这样的东西:
img[gif] { display:none; }
我知道这是一个简单的问题;谷歌没有产生任何结果。
你可以做:
img[src$=".gif"] { display: none; }
这会查看所有元素src的“.gif”属性的末尾。<img>
src