<p>
divの最後にスタイルを適用しようとしています。新しいクラス(またはID)を追加せずにそうしたいのですが。
最後の子セレクターを使用してみましたが、機能しません。
すべてのCSSドキュメントを宣言しようとしp:last-child {font-style: italic;}
ましたが、効果がないようです。
これが私のHTMLです:
<div class="new-section">
<div class="collection-container">
<div class="container">
<div class="row">
<div class="title span16">
<h1>The Title</h1>
</div>
<div class="span8">
<p>Some text.</p>
<p>This collection includes video, audio and essays.</p>
<p>Visit now</p>
<div class="arrow-right"></div>
</div>
</div>
</div>
</div>
</div>
そして、これが私のLESS CSSです:
.collection-container {
height: 200px;
position: relative;
background-color: @gray;
.container {
padding-top: @r-margin;
.title {
margin-bottom: @xs-margin;
}
.span8 p:last-child {
font-style: italic;
}
}
}