From 1386fed7d38652d5848d315927e7e23a66cffd13 Mon Sep 17 00:00:00 2001 From: Alexey Pyltsyn Date: Wed, 20 Oct 2021 13:28:52 +0300 Subject: [RU] Remove `name` attribute from headings (#2788) --- files/ru/web/api/htmlelement/offsetheight/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'files/ru/web/api/htmlelement/offsetheight/index.html') diff --git a/files/ru/web/api/htmlelement/offsetheight/index.html b/files/ru/web/api/htmlelement/offsetheight/index.html index bd26064ef3..96862833fd 100644 --- a/files/ru/web/api/htmlelement/offsetheight/index.html +++ b/files/ru/web/api/htmlelement/offsetheight/index.html @@ -15,14 +15,14 @@ translation_of: Web/API/HTMLElement/offsetHeight

This property will round the value to an integer. If you need a fractional value, use {{ domxref("element.getBoundingClientRect()") }}.

-

Syntax

+

Syntax

var intElemOffsetHeight = document.getElementById(id_attribute_value).offsetHeight;
 

intElemOffsetHeight is a variable storing an integer corresponding to the offsetHeight pixel value of the element. The offsetHeight property is readonly.

-

Example

+

Example

 

@@ -33,7 +33,7 @@ translation_of: Web/API/HTMLElement/offsetHeight

 

-

Specification

+

Specification

@@ -52,7 +52,7 @@ translation_of: Web/API/HTMLElement/offsetHeight
-

Notes

+

Notes

offsetHeight is a property of the DHTML object model which was first introduced by MSIE. It is sometimes referred to as an element's physical/graphical dimensions, or an element's border-box height.

@@ -60,7 +60,7 @@ translation_of: Web/API/HTMLElement/offsetHeight

{{Compat("api.HTMLElement.offsetHeight")}}

-

See Also

+

See Also