aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy <summerandyandy@gmail.com>2021-05-28 22:26:45 +0800
committerIrvin <irvinfly@gmail.com>2021-05-28 22:29:40 +0800
commit5a4e84a38e4103df148c7e332bf2485e3779ef0e (patch)
tree61d68c01f7d4a59374e59ba77d2e212c57251d35
parentc790b9a8a5c7a22c40fc1bd885e150a1f6f24146 (diff)
downloadtranslated-content-5a4e84a38e4103df148c7e332bf2485e3779ef0e.tar.gz
translated-content-5a4e84a38e4103df148c7e332bf2485e3779ef0e.tar.bz2
translated-content-5a4e84a38e4103df148c7e332bf2485e3779ef0e.zip
Update index.html
重拍应修改为重排。
-rw-r--r--files/zh-cn/web/css/css_containment/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/css/css_containment/index.html b/files/zh-cn/web/css/css_containment/index.html
index a1f5c51af0..1b63d1f33a 100644
--- a/files/zh-cn/web/css/css_containment/index.html
+++ b/files/zh-cn/web/css/css_containment/index.html
@@ -28,7 +28,7 @@ translation_of: Web/CSS/CSS_Containment
<p>在这个页面中,每个 article 都独立于其他的 article,所以,他们都被设置了 <code>contain: content</code> 属性,为了告诉浏览器他们相互独立。浏览器就可以通过这个信息来确定,如何渲染这些内容。比如,他可能不会渲染超出视图范围外的内容。</p>
-<p>如果我们给每个 <code>&lt;article&gt;</code> 节点都设置其 <code>contain</code> 属性为 <code>content</code>, 当新的内容被加入到该节点中时,浏览器就知道不用重拍和重绘节点以外的页面内容,但如果 <code>&lt;article&gt;</code>  设置了其 CSS 属性能让其大小根据其内容改变(比如 <code>height: auto</code>), 浏览器依旧会进行其大小的计算。</p>
+<p>如果我们给每个 <code>&lt;article&gt;</code> 节点都设置其 <code>contain</code> 属性为 <code>content</code>, 当新的内容被加入到该节点中时,浏览器就知道不用重排和重绘节点以外的页面内容,但如果 <code>&lt;article&gt;</code> 设置了其 CSS 属性能让其大小根据其内容改变(比如 <code>height: auto</code>), 浏览器依旧会进行其大小的计算。</p>
<p>我们通过 <code>contain</code> 属性告诉浏览器,这些节点是独立的。</p>