我必须隐藏所有锚元素,但不要隐藏类组的第一个子元素。锚点开始之前我放置h2标签。有了这个h2,我无法得到确切的结果。
HTML
<div id="main" >
<div class="album">
<h2>title 1 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
<div class="album">
<h2>title 2 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
<div class="album">
<h2>title3 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
</div>
:预期结果:
标题1 显示这个
标题2 显示这个
标题3 显示这个
我将css应用如下但不起作用。
.album a:not(:first-child) {
display:none;
}
当我省略
时,我得到了正确的结果<h2>...</h2>
答案 0 :(得分:1)
答案 1 :(得分:1)
尝试这样的事情
.album a {
display:none;
}
.album a:first-of-type {
display:block;
}
答案 2 :(得分:1)
你走了。
<强> WORKING DEMO 强>
CSS更改:
.album a{display:none;}
.album a:first-of-type{display:block;}
希望这有帮助。
答案 3 :(得分:1)
<div id="main" >
<div class="album">
<h2>title 1 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
<div class="album">
<h2>title 2 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
<div class="album">
<h2>title3 </h2>
<a title="Campus photo" href="images/gallery/campus/0.jpg">
show this
</a>
<a title="Campus photo" href="images/gallery/campus/1.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/2.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/3.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/4.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/5.jpg">
not show
</a>
<a title="Campus photo" href="images/gallery/campus/6.jpg">
not show
</a>
</div>
css
.album a{
display:none;
}
.album a:nth-child(2){
display:block;
}
.album h2 {
float: left;
margin: 0 20px;
}
.album{
clear:both;
}
结果应该看起来像
谢谢!