如何使用CSS选择图像

时间:2010-12-31 08:03:20

标签: javascript html css

这是我的HTML:

<div id="content">
    <img src="myimg.png" alt="this image need to select"/>
    <div  class="some">
        <img src="another.png" alt="this is not need  to select"/>
    </div>   
</div>

我想选择ID content内但不在divspancontent内的所有图像,即直接在content内选择所有图像{1}} div而不是内容div的divspan内的div。

有什么想法吗?

3 个答案:

答案 0 :(得分:8)

您可以使用>选择div的直接/直接子项,如下所示:

#content > img{
  // target direct children
}

Check out the demo here(所需图像为蓝色边框)

更多信息:

答案 1 :(得分:0)

不是专家,但这应该有效 - &gt; div#content > img

答案 2 :(得分:0)

你可以写

#content > img {

}