.alt
次のように、jQueryを使用して、メイン内の代替article
ブロックにクラスを追加しようとしてsection
います:
html5:
<section id="content" role="main">
<h1>Main Title</h1>
<article id="post-1" class="post-1 post type-post">
.. article content ..
</article>
<article id="post-2" class="post-2 post type-post">
.. article content ..
</article>
<article id="post-3" class="post-3 post type-post">
.. article content ..
</article>
</section>
jQuery:
$('#content article:nth-child(odd)').addClass('alt');
何か足りないのでしょうか...?きっとこれでうまくいくはず!?