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/initial/index.html | 83 +++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 files/ru/web/css/initial/index.html (limited to 'files/ru/web/css/initial') diff --git a/files/ru/web/css/initial/index.html b/files/ru/web/css/initial/index.html new file mode 100644 index 0000000000..e4f1e9c456 --- /dev/null +++ b/files/ru/web/css/initial/index.html @@ -0,0 +1,83 @@ +--- +title: initial +slug: Web/CSS/initial +tags: + - CSS + - CSS Cascade + - CSS Value + - Default state + - Initial state + - Layout + - Reference + - initial + - Справка +translation_of: Web/CSS/initial +--- +
{{CSSRef}}
+ +

Ключевое слово initial (CSS) устанавливает свойство элемента в начальное (или по умолчанию) значение. Это может быть применимо к любому свойству CSS. Это относится также к CSS свойству {{cssxref("all")}}, с которым initial может быть использовано для восcтановления всех CSS свойств до их начальных значений.

+ +
+

Примечание: На наследуемые свойства действие значения initial может быть непредвиденным. Вы должны рассмотреть возможность использования ключевых слов {{cssxref("inherit")}}, {{cssxref("unset")}} или {{cssxref("revert")}} вместо него.

+
+ +

Пример

+ +

HTML

+ +
<p>
+  <span>This text is red.</span>
+  <em>This text is in the initial color (typically black).</em>
+  <span>This is red again.</span>
+</p>
+ +

CSS

+ +
p {
+  color: red;
+}
+
+em {
+  color: initial;
+}
+ +

{{EmbedLiveSample('Example')}}

+ +

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

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('CSS4 Cascade', '#initial', 'initial') }}{{Spec2('CSS4 Cascade')}}Нет изменений с уровня 3.
{{ SpecName('CSS3 Cascade', '#initial', 'initial') }}{{Spec2('CSS3 Cascade')}}Начальное определение.
+ +

Совместимость с браузерами

+ + + +

{{Compat("css.types.global_keywords.initial")}}

+ +

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

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