aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn
diff options
context:
space:
mode:
authorsisyphus98 <78889976+sisyphus98@users.noreply.github.com>2021-07-16 16:09:08 +0800
committerIrvin <irvinfly@gmail.com>2021-07-17 04:33:19 +0800
commita53bff5bca8db992fdf2ac0c68a82e7a1a53ab7e (patch)
treeeaaefefdc2dc0860dbacb4a06e072547b6d3b589 /files/zh-cn
parentfe3242c2cd8166fb1ad1ac65dc7cf8f95c8e9d62 (diff)
downloadtranslated-content-a53bff5bca8db992fdf2ac0c68a82e7a1a53ab7e.tar.gz
translated-content-a53bff5bca8db992fdf2ac0c68a82e7a1a53ab7e.tar.bz2
translated-content-a53bff5bca8db992fdf2ac0c68a82e7a1a53ab7e.zip
fix some punctuation
fix some punctuation
Diffstat (limited to 'files/zh-cn')
-rw-r--r--files/zh-cn/web/css/viewport_concepts/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/css/viewport_concepts/index.html b/files/zh-cn/web/css/viewport_concepts/index.html
index c529cf3780..ec3f4d88f0 100644
--- a/files/zh-cn/web/css/viewport_concepts/index.html
+++ b/files/zh-cn/web/css/viewport_concepts/index.html
@@ -38,7 +38,7 @@ window.outerHeight /* 900 */
<p>下面是一些帮助你查询查询 viewport 大小和其它类似的长度属性的 DOM 属性:</p>
<ul>
- <li>文档的 {{DOMxRef("Element.clientWidth")}} 是指一个文档使用 <a href="https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag#A_pixel_is_not_a_pixel">CSS pixels</a> 单位表示的内部宽度, 包括其 padding (不包括 borders, margins 或垂直滚动条,如果有的话). <strong>这就是 viewport 的宽度</strong>。</li>
+ <li>文档的 {{DOMxRef("Element.clientWidth")}} 是指一个文档使用 <a href="https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag#A_pixel_is_not_a_pixel">CSS pixels</a> 单位表示的内部宽度, 包括其 padding (不包括 borders, margins 或垂直滚动条,如果有的话)。<strong>这就是 viewport 的宽度</strong>。</li>
<li>{{DOMxRef("Window.innerWidth")}} 是用 CSS pixels 单位表示的浏览器窗口 viewport 宽度,包括垂直滚动条,如果渲染了的话。</li>
<li>{{DOMxRef("Window.outerWidth")}} 是指包括了浏览器外边框的窗口宽度。</li>
</ul>
@@ -85,7 +85,7 @@ body &gt; footer {
<p>在上面描述的布局视口 (layout viewport) 和视觉视口 (visual viewport) 不是您将遇到的唯一视口。 在布局视口中完全或部分显示的任何子视口都被视为可视视口。</p>
-<p>我们通常认为宽度和高度的媒体查询是相对于浏览器窗口的宽度和高度而言的。 它们实际上是相对于视口的,即主文档(document)中的窗口(window对象),但它也是嵌套浏览上下文(如对象,iframe和SVG)中元素父级的本身的大小。 在CSS中,我们也有基于视口大小的长度单位。 1vh单位是1%布局视口的高度,vw单位与此类似。</p>
+<p>我们通常认为宽度和高度的媒体查询是相对于浏览器窗口的宽度和高度而言的。 它们实际上是相对于视口的,即主文档(document)中的窗口(window对象),但它也是嵌套浏览上下文(如对象,iframe和SVG)中元素父级的本身的大小。 在CSS中,我们也有基于视口大小的长度单位。 1vh 单位是 1% 布局视口的高度,vw 单位与此类似。</p>
<h4 id="&lt;iframe>"><code>&lt;iframe&gt;</code></h4>