--- title: white-space slug: Web/CSS/white-space tags: - CSS - CSS Property - CSS Text - Reference translation_of: Web/CSS/white-space ---
{{CSSRef}}

CSS white-space 속성은 요소가 공백 문자를 처리하는 법을 지정합니다.

{{EmbedInteractiveExample("pages/css/white-space.html")}}

참고: 단어 안에서 줄이 바뀌기를 원하는 경우 {{CSSxRef("overflow-wrap")}}, {{CSSxRef("word-break")}}, {{CSSxRef("hyphens")}}를 사용하세요.

구문

/* Keyword values */
white-space: normal;
white-space: nowrap;
white-space: pre;
white-space: pre-wrap;
white-space: pre-line;
white-space: break-spaces;

/* Global values */
white-space: inherit;
white-space: initial;
white-space: unset;

white-space 속성은 다음 목록의 키워드 값 중 하나를 사용해 설정합니다.

normal
연속 공백을 하나로 합침. 개행 문자도 다른 공백 문자와 동일하게 처리합니다. 한 줄이 너무 길어서 넘칠 경우 자동으로 줄을 바꿉니다.
nowrap
연속 공백을 하나로 합침. 줄 바꿈은 {{htmlelement("br")}} 요소에서만 일어납니다.
pre
연속 공백 유지. 줄 바꿈은 개행 문자와 {{htmlelement("br")}} 요소에서만 일어납니다.
pre-wrap
연속 공백 유지. 줄 바꿈은 개행 문자와 {{htmlelement("br")}} 요소에서 일어나며, 한 줄이 너무 길어서 넘칠 경우 자동으로 줄을 바꿉니다.
pre-line
연속 공백을 하나로 합침. 줄바꿈은 개행 문자와 {{htmlelement("br")}} 요소에서 일어나며, 한 줄이 너무 길어서 넘칠 경우 자동으로 줄을 바꿉니다.
break-spaces
다음 차이점을 제외하면 pre-wrap과 동일합니다.

다음은 여러가지 white-space 값의 동작을 정리한 표입니다.

개행 문자 스페이스, 탭 자동 줄 바꿈 줄 끝의 공백
normal 병합 병합 제거
nowrap 병합 병합 아니오 제거
pre 유지 유지 아니오 유지
pre-wrap 유지 유지 넘침
pre-line 유지 병합 제거
break-spaces 유지 유지 줄 바꿈

형식 구문

{{csssyntax}}

예제

기본 예제

code {
  white-space: pre;
}

{{HTMLElement("pre")}} 요소 내부의 줄 바꿈

pre {
  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: pre-wrap;      /* current browsers */
}

실제로 보기

HTML

    <p>    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

    Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

    Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

CSS + 결과

{{EmbedLiveSample('See_it_in_action_LiveSample', '100%', 500)}}

명세

Specification Status Comment
{{SpecName('CSS3 Text', '#propdef-white-space', 'white-space')}} {{Spec2('CSS3 Text')}} Precises the breaking algorithms.
{{SpecName('CSS2.1', 'text.html#white-space-prop', 'white-space')}} {{Spec2('CSS2.1')}} Initial definition

{{cssinfo}}

브라우저 호환성

{{Compat("css.properties.white-space")}}

같이 보기