From afce64b258e33ebad1fa88b0e1032df91ad8beb0 Mon Sep 17 00:00:00 2001 From: Ghost-017 <31908292+Ghost-017@users.noreply.github.com> Date: Wed, 5 Dec 2018 17:39:28 +0800 Subject: [PATCH] Update article.md --- 2-ui/1-document/09-size-and-scroll/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/1-document/09-size-and-scroll/article.md b/2-ui/1-document/09-size-and-scroll/article.md index da02abdc..952dd727 100644 --- a/2-ui/1-document/09-size-and-scroll/article.md +++ b/2-ui/1-document/09-size-and-scroll/article.md @@ -202,7 +202,7 @@ On the picture below we can see `scrollHeight` and `scrollTop` for a block with In other words, `scrollTop` is "how much is scrolled up". ````smart header="`scrollLeft/scrollTop` can be modified" -Most geometry properties that are read-only, but `scrollLeft/scrollTop` can be changed, and the browser will scroll the element. +Most of the geometry properties here are read-only, but `scrollLeft/scrollTop` can be changed, and the browser will scroll the element. ```online If you click the element below, the code `elem.scrollTop += 10` executes. That makes the element content scroll `10px` down.