我有一个jquery手风琴,我想用nth-child分配奇数/偶数背景。
结构是这样的:
<div class="jobmenu accordion">
<a>
<section>
<article><img.....></article>
<article>Item 1 name</article>
<article>123</article>
</section>
</a>
<div>
<table class="itemTable">
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
<a>
<section>
<article><img.....></article>
<article>Item 2 name</article>
<article>432</article>
</section>
</a>
<div>
<table class="itemTable">
<thead>...</thead>
<tbody>...</tbody>
</table>
</div>
</div>
nth-child完美地在桌子上为tbody中的trs分配奇数和偶数值,但我想对手风琴做同样的事情。这些文章都正确地使用了nth-child的设置宽度,使得可折叠列表具有统一的外观,但每个“a”被分配给奇数样式。除非我在php中为它添加了一个类,但是这会破坏干净的CSS设计。
css是:
.jobmenu a {
height:40px;
}
.jobmenu a:nth-child(even){
background: #CCC;
font-size: 12px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon imageglossyback.gif*/
width: auto;
padding: 4px 0;
padding-left: 10px;
padding-right:10px;
text-decoration: none;
cursor:pointer;
}
.jobmenu a:nth-child(odd){
background: #999;
font-size: 12px;
display: block;
position: relative; /*To help in the anchoring of the ".statusicon" icon imageglossyback.gif*/
width: auto;
padding: 4px 0;
padding-left: 10px;
padding-right:10px;
text-decoration: none;
cursor:pointer;
}
.jobmenu article:nth-child(1)
{
width:350px; margin-left:15px; text-wrap:normal; float:left;
}
.jobmenu article:nth-child(2)
{
width:100px; float:left;
}
.jobmenu article:nth-child(3)
{
width:200px; float:left;
}
我假设是因为a位于奇数位置且div位于偶数位置。有办法解决这个问题吗?
答案 0 :(得分:1)
.jobmenu a:nth-child(4n+1){
/*style*/
}
我尝试过它。