aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/element/scrollwidth/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/api/element/scrollwidth/index.html')
-rw-r--r--files/zh-cn/web/api/element/scrollwidth/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/element/scrollwidth/index.html b/files/zh-cn/web/api/element/scrollwidth/index.html
index 21a8bf162b..040210e909 100644
--- a/files/zh-cn/web/api/element/scrollwidth/index.html
+++ b/files/zh-cn/web/api/element/scrollwidth/index.html
@@ -9,7 +9,7 @@ translation_of: Web/API/Element/scrollWidth
<div><strong><code>Element.scrollWidth</code></strong> 这个只读属性是元素内容宽度的一种度量,包括由于overflow溢出而在屏幕上不可见的内容。</div>
-<div></div>
+
<p><code>scrollWidth</code>值等于元素在不使用水平滚动条的情况下适合视口中的所有内容所需的最小宽度。 宽度的测量方式与{{domxref("Element.clientWidth", "clientWidth")}}相同:它包含元素的内边距,但不包括边框,外边距或垂直滚动条(如果存在)。 它还可以包括伪元素的宽度,例如{{cssxref("::before")}}或{{cssxref("::after")}}。 如果元素的内容可以适合而不需要水平滚动条,则其<code>scrollWidth</code>等于{{domxref("Element.clientWidth", "clientWidth")}}</p>