diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-09-06 10:49:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 12:49:18 +0500 |
commit | 6c094948c62abdbb132a28a26c0a5042ce2ffb20 (patch) | |
tree | cb5e3de306c09d1bfcc6a4d02f6dd782379ef088 /files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html | |
parent | 33a5bcbcd367750dc0b7376f692d5aacfb799303 (diff) | |
download | translated-content-6c094948c62abdbb132a28a26c0a5042ce2ffb20.tar.gz translated-content-6c094948c62abdbb132a28a26c0a5042ce2ffb20.tar.bz2 translated-content-6c094948c62abdbb132a28a26c0a5042ce2ffb20.zip |
[RU] Fix some typos (#2357)
Diffstat (limited to 'files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html')
-rw-r--r-- | files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html b/files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html index 53701aa75c..906e9d5208 100644 --- a/files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html +++ b/files/ru/web/api/cssstyledeclaration/getpropertyvalue/index.html @@ -5,7 +5,7 @@ translation_of: Web/API/CSSStyleDeclaration/getPropertyValue --- <p>{{ APIRef("CSSOM") }}</p> -<p><strong>CSSStyleDeclaration.getPropertyValue()</strong> интерфейс метода, который возвращает {{domxref('DOMString')}}, указанного CSS свойства.</p> +<p><strong>CSSStyleDeclaration.getPropertyValue()</strong> интерфейс метода, который возвращает {{domxref('DOMString')}}, указанного CSS-свойства.</p> <h2 id="Синтаксис">Синтаксис</h2> @@ -25,7 +25,7 @@ translation_of: Web/API/CSSStyleDeclaration/getPropertyValue <h2 id="Пример">Пример</h2> -<p>Следующий JavaScript код проверяет отмечен ли margin как important в CSS правиле селектора:</p> +<p>Следующий JavaScript-код проверяет отмечен ли margin как important в CSS-правиле селектора:</p> <pre class="brush: js">var declaration = document.styleSheets[0].rules[0].style; var value = declaration.getPropertyValue('margin'); // "1px 2px" |