From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/ru/web/css/_colon_last-child/index.html | 114 ++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 files/ru/web/css/_colon_last-child/index.html (limited to 'files/ru/web/css/_colon_last-child') diff --git a/files/ru/web/css/_colon_last-child/index.html b/files/ru/web/css/_colon_last-child/index.html new file mode 100644 index 0000000000..cc691def67 --- /dev/null +++ b/files/ru/web/css/_colon_last-child/index.html @@ -0,0 +1,114 @@ +--- +title: ':last-child' +slug: 'Web/CSS/:last-child' +translation_of: 'Web/CSS/:last-child' +--- +
{{CSSRef}}
+ +

Описание

+ +

CSS псевдо-класс :last-child находит любой элемент, являющийся последним в его родителе.

+ +

Синтаксис

+ +
element:last-child { style properties }
+ +

Пример

+ +

HTML

+ +
<ul>
+  <li>Этот элемент не лаймовый.</li>
+  <li>И этот тоже.</li>
+  <li>А этот да! :)</li>
+</ul>
+ +

CSS

+ +
li:last-child {
+  background-color: lime;
+}
+ +

{{EmbedLiveSample('Пример', '100%', 100)}}

+ +

Спецификации

+ + + + + + + + + + + + + + + + + + + + + +
СпецификацииСтатусКомментарий
{{SpecName('CSS4 Selectors', '#last-child', ':last-child')}}{{Spec2('CSS4 Selectors')}}Без изменений
{{SpecName('CSS3 Selectors', '#last-child', ':last-child')}}{{Spec2('CSS3 Selectors')}}Изначальное определение
+ +

Поддержка браузерами

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
ВозможностьChromeFirefox (Gecko)Internet ExplorerOperaSafari
Базовая поддержка1.0{{CompatGeckoDesktop("1")}}9.09.53.2
+
+ +
+ + + + + + + + + + + + + + + + + + + +
ВозможностьAndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Базовая поддержка2.1{{CompatGeckoMobile("1")}}9.010.03.2
+
+ +

Смотрите также

+ + -- cgit v1.2.3-54-g00ecf