内容简介:翻译自:https://stackoverflow.com/questions/12075655/css-selectors-apply-style-to-all-images-except-the-first-one
我认为我可以使用高级CSS选择器来做到这一点,但是很挣扎.
我有一个JS小提琴 here 与下面的例子
基本上,我如何定位每个图像,除了第一个?我不想使用类或ID,我只想使用高级选择器,如果可能的话.
所以类似于.entry-content img:first-child(虽然我知道这不起作用)
<div class='entry-content'> <div> <img src='http://placedog.com/400/300'/> </div> <div> <img src='http://placedog.com/400/300'/> </div> <div> <img src='http://placedog.com/400/300'/> </div> </div>
如果要选择除第一个之外的所有img标记,请使用:not subclass:
.entry-content div:not(:first-child) img
浏览器支持:
翻译自:https://stackoverflow.com/questions/12075655/css-selectors-apply-style-to-all-images-except-the-first-one
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Database Design and Implementation
Edward Sciore / Wiley / 2008-10-24 / 1261.00 元
* Covering the traditional database system concepts from a systems perspective, this book addresses the functionality that database systems provide as well as what algorithms and design decisions will......一起来看看 《Database Design and Implementation》 这本书的介绍吧!