0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【CSS】:last-childの使い方

Last updated at Posted at 2025-04-25

:last-childは、親要素の最後の子要素を選択します。任意の要素タイプに適用できます。

使用例

/* 親要素の最後の子要素にスタイルを適用 */
.parent > :last-child {
  background-color: #f0f0f0;
}
<div class="parent">
  <p>最初の段落</p>
  <p>最後の段落</p>
</div>

この例では、div.parentの最後の<p>要素に背景色が適用されます。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?