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/api/cssvalue/index.html | 74 ++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 files/ru/web/api/cssvalue/index.html (limited to 'files/ru/web/api/cssvalue') diff --git a/files/ru/web/api/cssvalue/index.html b/files/ru/web/api/cssvalue/index.html new file mode 100644 index 0000000000..168f152849 --- /dev/null +++ b/files/ru/web/api/cssvalue/index.html @@ -0,0 +1,74 @@ +--- +title: CSSValue +slug: Web/API/CSSValue +translation_of: Web/API/CSSValue +--- +
{{APIRef("DOM")}}
+ +

Интерфейс CSSValue возвращает текущее вычсленное значение CSS-свойства. 

+ +

Свойства

+ +
+
{{domxref("CSSValue.cssText")}}
+
{{domxref("DOMString")}} возвращает текущее значение.
+
{{domxref("CSSValue.cssValueType")}} {{readonlyInline}}
+
An unsigned short representing a code defining the type of the value. Возможные значения: + + + + + + + + + + + + + + + + + + + + + + + +
КонстантаОписание
CSS_CUSTOMThe value is a custom value.
CSS_INHERITЗначение унаследовано и cssText содержит "inherit".
CSS_PRIMITIVE_VALUEThe value is a primitive value and an instance of the {{domxref("CSSPrimitiveValue")}} interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
CSS_VALUE_LISTThe value is a CSSValue list and an instance of the {{domxref("CSSValueList")}} interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
+
+
+ +

Specifications

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('DOM2 Style', 'css.html#CSS-CSSValue', 'CSSValue')}}{{Spec2('DOM2 Style')}}Initial definition
+ +

Browser compatibility

+ +
+ + +

{{Compat("api.CSSValue")}}

+
+ +

See also

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