--- title: ':last-child' slug: 'Web/CSS/:last-child' tags: - CSS S - CSS Sozde-sınıflar - Yerleşim translation_of: 'Web/CSS/:last-child' ---
{{CSSRef}}

Özet

:last-child CSS pseudo-class bir grup çocuğun sonuncusunu temsil eder.

Kullanım Notu: İlk tanımda belirtildiği üzere seçilen elemanın atası olması gerekiyordu. CSS4'le beraber artık gerekmiyor.

Yazım Şekli

{{csssyntax}}

Örnek

HTML İçerik

<ul>
  <li>Bu kısım yeşermedi</li>
  <li>Bu da yeşermedi.</li>
  <li>Burası yeşerdi :)</li>
</ul>

CSS İçerik

li:last-child {
  background-color: green;
}

{{EmbedLiveSample('Example', '100%', 100)}}

Detaylar

Detay Durum Yorum
{{SpecName('CSS4 Selectors', '#last-child', ':last-child')}} {{Spec2('CSS4 Selectors')}} Eşleşen elemanların atası olması zorunlu değil.
{{SpecName('CSS3 Selectors', '#last-child', ':last-child')}} {{Spec2('CSS3 Selectors')}} İlk tanımlama.

Tarayıcı Uyumluluğu

{{CompatibilityTable}}

Özellik Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari
Temel Seviyede Destek 1.0 {{CompatVersionUnknown}} {{CompatGeckoDesktop("1")}} 9.0 {{CompatOpera(9.5)}} 3.2
Ata zorunlu değil {{CompatChrome(57)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatOpera(44)}} {{CompatUnknown}}
Özellik Android Webview Chrome for Android Edge Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Temel Seviyede Destek {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile("1")}} 9.0 {{CompatOperaMobile(10)}} 3.2
Ata zorunlu değil {{CompatChrome(57)}} {{CompatChrome(57)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatOperaMobile(44)}} {{CompatUnknown}}

Ayrıca Bakınız