2

我试图让 div 中的第 n 个 img 没有右边框,如下面的 jsfiddle 所示。

看看这里: jsfiddle

我试过这个,但它也不起作用

.intro img:nth-child(3n+0)
{
border-right:none !important;
}

我让它成功工作而没有'a'标签中的图像。但我需要它在里面。

知道我怎样才能完成这项工作吗?

4

2 回答 2

3
.intro a:nth-child(3n) img

这是a那个nth-child不是那个img

http://jsfiddle.net/SYEWS/4/

于 2013-09-23T03:00:36.987 回答
1

你为什么不只使用

.intro a:last-child img{
    border-right: none;

}

演示

于 2013-09-23T03:01:01.483 回答