ここでは、操作しようとしているHTMLコードを示します。私はChazを言う3番目の引用ブロックを強調表示する必要があります。私はこれを行うためにidsやクラスを使うべきではありません。ここで 要素を別の要素の中に埋め込んだときに:notセレクタを動作させる方法
<aside id="left">
<h2>What they're saying about us</h2>
<blockquote title="testimonials">
<p>"CSS coding is endlessly fun. I have such a great time doing it."</p>
<cite>DGMD student</cite>
</blockquote>
<blockquote>
<p>"I will be so glad when this assignment is over. "</p>
<cite>Another student</cite>
</blockquote>
<blockquote>
<p>"Do you really need so many classes and IDs after learning these cool selectors?"</p>
<cite>Chaz</cite>
</blockquote>
</aside>
は、私がこれを行うために作成したCSSコードですが、私は使用することが出来るのです:この問題と私がしようとすると何も変わらない、それを使用するたびに完了するために、セレクタではありません。
blockquote:last-of-type cite {
background-color: purple;
font-style: normal;
color: white;
}
を助けたとえば...
希望。また、あなたのCSSが動作しており、クラスやIDがないためです。私はちょうどあなたが必要とする(または使用することができる)方法を見ていない:これのためではない。 – GolezTrol
すべての 'cite'を紫色にして、最後のブロックではないすべてのものに対してリセットすることで、面倒な作業をしない限り、面倒です。 – GolezTrol
「興味深い仕様」おそらくこれは宿題などです。 –