私はstyle.cssファイル内の:同じクラスを持つ一連のワードプレス投稿のlast-childを選択しようとしています。 は、ここに私の文書構造の簡略版である:私はこれを試してみましたラスト・チャイルドはクラスで作業していません。最後の型もうまくいきません
<div id="container">
<div id="content">
<!--start .post-->
<div id="post-33" class="hentry p1 post">
<h2 class="entry-title"><a href="url">Post 1</a></h2>
<div class="entry-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<!--end .post -->
<!--start .post-->
<div id="post-24" class="hentry p1 post">
<h2 class="entry-title"><a href="url">Post 2</a></h2>
<div class="entry-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<!--end .post -->
<!--start .post-->
<div id="post-24" class="hentry p1 post">
<h2 class="entry-title"><a href="url">Post 3</a></h2>
<div class="entry-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
<!--end .post -->
<div id="nav-below" class="navigation">
<div class="nav-previous"></div>
<div class="nav-next"></div>
</div>
</div><!-- #content -->
</div><!-- #container -->
、それはして正常に動作しますが:最後の子:最初の子セレクターそれはで全く動作しません。
.post .entry-content {
background-color: pink;
border-bottom: 2px solid;
}
.post:first-child .entry-content {
background-color: red;
border-bottom: 0px solid;
}
.post:last-child .entry-content {
background-color: yellow;
border-bottom: 0px solid;
}
どのような考えですか? 私のサイトのライブバージョンは以下の通りです:http://dev.visualvisual.com/
'post'クラスの最後の要素は、その親の最後の子ではありません。 'class-last-of-class'疑似クラスセレクタはありません。 –