--- title: text-align slug: Web/CSS/text-align tags: - CSS - CSS Property - CSS Text - Reference - 'recipe:css-property' translation_of: Web/CSS/text-align ---
CSS text-align
속성은 블록 요소나 표의 칸 상자의 가로 정렬을 설정합니다. 즉 {{cssxref("vertical-align")}}과 동일하나 세로가 아닌 가로 방향으로 동작합니다.
/* 키워드 값 */ text-align: left; text-align: right; text-align: center; text-align: justify; text-align: justify-all; text-align: start; text-align: end; text-align: match-parent; /* 표 열의 문자 기반 정렬 */ text-align: "."; text-align: "." center; /* 블록 정렬 값 (비표준 구문) */ text-align: -moz-center; text-align: -webkit-center; /* 전역 값 */ text-align: inherit; text-align: initial; text-align: unset;
text-align
속성은 다음 방법 중 하나를 사용해 지정합니다.
start
, end
, left
, right
, center
, justify
, justify-all
, match-parent
키워드 중 하나.<string>
값만 사용. 다른 값은 right
을 사용하게 됩니다.<string>
값 모두 사용.start
{{experimental_inline}}left
와 같고, 우횡서면 right
과 같습니다.end
{{experimental_inline}}right
과 같고, 우횡서면 left
와 같습니다.left
right
center
justify
justify-all
{{experimental_inline}}justify
와 같지만 마지막 줄에도 적용합니다.match-parent
{{experimental_inline}}inherit
과 비슷하지만, start
와 end
값을 부모의 {{cssxref("direction")}}에 맞춰 적절한 left
와 right
값으로 치환합니다.양쪽 정렬 적용 시 생기는 불규칙한 여백은 난독증 등 인지력 저하를 겪고 있는 사용자에게 문제가 될 수 있습니다.
{{cssinfo}}
<p class="example"> Integer elementum massa at nulla placerat varius. Suspendisse in libero risus, in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque. Nullam est eros, suscipit sed dictum quis, accumsan a ligula. </p>
.example { text-align: left; border: solid; }
{{EmbedLiveSample("왼쪽_정렬","100%","100%")}}
<p class="example"> Integer elementum massa at nulla placerat varius. Suspendisse in libero risus, in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque. Nullam est eros, suscipit sed dictum quis, accumsan a ligula. </p>
.example { text-align: center; border: solid; }
{{EmbedLiveSample("가운데_정렬","100%","100%")}}
<p class="example"> Integer elementum massa at nulla placerat varius. Suspendisse in libero risus, in interdum massa. Vestibulum ac leo vitae metus faucibus gravida ac in neque. Nullam est eros, suscipit sed dictum quis, accumsan a ligula. </p>
.example { text-align: justify; border: solid; }
{{EmbedLiveSample("양쪽_정렬","100%","100%")}}
인라인 콘텐츠를 가운데 정렬하지 않고 자신을 정렬하는 법은 {{cssxref("margin")}}을 auto
로 설정하는 것입니다.
.something { margin: auto; }
.something { margin: 0 auto; }
.something { margin-left: auto; margin-right: auto; }
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS Logical Properties', '#text-align', 'text-align')}} | {{Spec2('CSS Logical Properties')}} | No changes |
{{SpecName('CSS4 Text', '#alignment', 'text-align')}} | {{Spec2('CSS4 Text')}} | Added the <string> value. |
{{SpecName('CSS3 Text', '#text-align-property', 'text-align')}} | {{Spec2('CSS3 Text')}} | Added the start , end , and match-parent values. Changed the unnamed initial value to start (which it was). |
{{SpecName('CSS2.1', 'text.html#alignment-prop', 'text-align')}} | {{Spec2('CSS2.1')}} | No changes |
{{SpecName('CSS1', '#text-align', 'text-align')}} | {{Spec2('CSS1')}} | Initial definition |
{{Compat("css.properties.text-align")}}