aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/guide
diff options
context:
space:
mode:
authorYeji Choi <61399588+yechoi42@users.noreply.github.com>2021-07-18 22:58:53 +0900
committerGitHub <noreply@github.com>2021-07-18 22:58:53 +0900
commit619211e9ba8a68c9d5de346dfc73fa0686c9148d (patch)
tree8c979eccdb1ba64e1b314ea2ab542ae3e6262c2e /files/ko/web/guide
parent53fb7c6f1f2f22f558b4a5b9af867767ecfeddfd (diff)
downloadtranslated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.gz
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.bz2
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.zip
fix: delete wiki.mozilla.org from ko files (#1567)
* fix: delete wiki.mozilla.org from ko/learn files * fix: delete wiki.mozilla.org from ko/glossary files * fix: remove wiki * fix: remove python script file 잘못올렸습니다.. ㅠ * Update files/ko/web/html/attributes/index.html Co-authored-by: hochan222 <hochan049@gmail.com>
Diffstat (limited to 'files/ko/web/guide')
-rw-r--r--files/ko/web/guide/css/block_formatting_context/index.html4
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>&lt;div&gt;</code> with a <code>border</code> applied. The content of that <code>&lt;div&gt;</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>&lt;div&gt;</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>&lt;div&gt;</code> only contain the content and not the float.</p>
+<p>In the following example, we have a floated element inside a <code>&lt;div&gt;</code> with a <code>border</code> applied. The content of that <code>&lt;div&gt;</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>&lt;div&gt;</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>&lt;div&gt;</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>