aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/learn/css/css_layout/introduction/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/learn/css/css_layout/introduction/index.html')
-rw-r--r--files/zh-cn/learn/css/css_layout/introduction/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/css/css_layout/introduction/index.html b/files/zh-cn/learn/css/css_layout/introduction/index.html
index 7657c460f7..a96e967bad 100644
--- a/files/zh-cn/learn/css/css_layout/introduction/index.html
+++ b/files/zh-cn/learn/css/css_layout/introduction/index.html
@@ -98,7 +98,7 @@ translation_of: Learn/CSS/CSS_layout/Introduction
<h2 id="弹性盒子Flexbox">弹性盒子(Flexbox)</h2>
-<p>Flexbox 是CSS 弹性盒子布局模块(<a href="https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout">Flexible Box Layout</a> Module)的缩写,它被专门设计出来用于创建横向或是纵向的一维页面布局。要使用flexbox,你只需要在想要进行flex布局的父元素上应用<code>display: flex</code> ,所有直接子元素都将会按照flex进行布局。我们来看一个例子。</p>
+<p>Flexbox 是CSS 弹性盒子布局模块(<a href="/zh-CN/docs/Web/CSS/CSS_Flexible_Box_Layout">Flexible Box Layout</a> Module)的缩写,它被专门设计出来用于创建横向或是纵向的一维页面布局。要使用flexbox,你只需要在想要进行flex布局的父元素上应用<code>display: flex</code> ,所有直接子元素都将会按照flex进行布局。我们来看一个例子。</p>
<p>下面这些HTML标记描述了一个class为<code>wrapper</code>的容器元素,它的内部有三个<code>&lt;div&gt;</code>元素。它们在我们的英文文档当中,会默认地作为块元素从上到下进行显示。</p>