diff options
Diffstat (limited to 'files/ko/web/guide')
-rw-r--r-- | files/ko/web/guide/css/block_formatting_context/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/web/guide/css/block_formatting_context/index.html b/files/ko/web/guide/css/block_formatting_context/index.html index 3a46d31f0a..f15e711dec 100644 --- a/files/ko/web/guide/css/block_formatting_context/index.html +++ b/files/ko/web/guide/css/block_formatting_context/index.html @@ -49,7 +49,7 @@ translation_of: Web/Guide/CSS/Block_formatting_context <p>Let's have a look at a couple of these in order to see the effect creating a new <abbr title="Block Formatting Context">BFC</abbr>.</p> -<p>In the following example, we have a floated element inside a <code><div></code> with a <code>border</code> applied. The content of that <code><div></code> has floated alongside the floated element. As the content of the float is taller than the content alongside it, the border of the <code><div></code> now runs through the float. As explained in the <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flow_Layout/In_Flow_and_Out_of_Flow">guide to in-flow and out of flow elements</a>, the float has been taken out of flow so the <code>background</code> and <code>border</code> of the <code><div></code> only contain the content and not the float.</p> +<p>In the following example, we have a floated element inside a <code><div></code> with a <code>border</code> applied. The content of that <code><div></code> has floated alongside the floated element. As the content of the float is taller than the content alongside it, the border of the <code><div></code> now runs through the float. As explained in the <a href="/en-US/docs/Web/CSS/CSS_Flow_Layout/In_Flow_and_Out_of_Flow">guide to in-flow and out of flow elements</a>, the float has been taken out of flow so the <code>background</code> and <code>border</code> of the <code><div></code> only contain the content and not the float.</p> <p><strong>using <code>overflow: auto</code></strong></p> @@ -161,7 +161,7 @@ translation_of: Web/Guide/CSS/Block_formatting_context <h3 id="여백_상쇄">여백 상쇄</h3> -<p>Creating a new BFC to avoid the <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing">margin collapsing</a> between two neighbor div:</p> +<p>Creating a new BFC to avoid the <a href="/en-US/docs/Web/CSS/CSS_Box_Model/Mastering_margin_collapsing">margin collapsing</a> between two neighbor div:</p> <h4 id="HTML_3">HTML</h4> |