aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorJISUNG YOO <yamsiri@gmail.com>2021-05-20 23:52:38 +0900
committerGitHub <noreply@github.com>2021-05-20 23:52:38 +0900
commitdf027e395111581f016249dcefd37e344c6d4f54 (patch)
tree57d8ad92865d0be6d7eda1b2f302bdb30531dcb2 /files
parent73234ccdcf4e4649eb36dc97938896b06d2a853b (diff)
downloadtranslated-content-df027e395111581f016249dcefd37e344c6d4f54.tar.gz
translated-content-df027e395111581f016249dcefd37e344c6d4f54.tar.bz2
translated-content-df027e395111581f016249dcefd37e344c6d4f54.zip
Fix typo (#941)
`주죽` -> `주축` Fix Korean mistypo
Diffstat (limited to 'files')
-rw-r--r--files/ko/web/css/css_flexible_box_layout/basic_concepts_of_flexbox/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/css/css_flexible_box_layout/basic_concepts_of_flexbox/index.html b/files/ko/web/css/css_flexible_box_layout/basic_concepts_of_flexbox/index.html
index 1a42e8635a..c52affc87c 100644
--- a/files/ko/web/css/css_flexible_box_layout/basic_concepts_of_flexbox/index.html
+++ b/files/ko/web/css/css_flexible_box_layout/basic_concepts_of_flexbox/index.html
@@ -210,7 +210,7 @@ original_slug: Web/CSS/CSS_Flexible_Box_Layout/Flexbox의_기본_개념
<p>이 속성의 (아무것도 지정하지 않았을 때 적용되는)초기 값은 <code>flex-start</code>이며 이 값을 지정하면 <strong>flex 항목</strong> 행 내의 항목들은 <strong>flex 컨테이너</strong>의 시작선에서 부터 정렬됩니다. <code>flex-end</code>로 지정하면 <strong>flex 항목</strong> 행의 마지막 항목이 <strong>flex 컨테이너</strong>의 끝선에서 정렬됩니다. <code>center</code>로 지정하면 <strong>flex 항목</strong>들이 <strong>flex 항목</strong> 행의 가운데 정렬됩니다.</p>
-<p><code>space-between</code>을 지정하면 주죽 방향 여유 공간을 <strong>flex 항목</strong> 사이의 공간에 균등 배분합니다. </p>
+<p><code>space-between</code>을 지정하면 주축 방향 여유 공간을 <strong>flex 항목</strong> 사이의 공간에 균등 배분합니다. </p>
<p><code>space-around</code>는 시작선 및 끝선과<strong> flex 항목</strong>간 공간도 균등 배분에 고려하므로 시작선 및 끝선과 <strong>flex 항목</strong> 간의 공간의 크기를 1로 배분한다면 <strong>flex 항목</strong> 사이의 공간은 2로 배분합니다. </p>