--- title: white-space slug: Web/CSS/white-space tags: - CSS - CSS Property - CSS Text - Reference translation_of: Web/CSS/white-space ---
CSS white-space
속성은 요소가 공백 문자를 처리하는 법을 지정합니다.
참고: 단어 안에서 줄이 바뀌기를 원하는 경우 {{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
pre
pre-wrap
pre-line
break-spaces
pre-wrap
과 동일합니다.
pre-wrap
과 달리 요소 바깥으로 넘치지 않으며, 공간도 차지하므로 박스의 본질 크기(min-content
, max-content
)에 영향을 줍니다.다음은 여러가지 white-space
값의 동작을 정리한 표입니다.
개행 문자 | 스페이스, 탭 | 자동 줄 바꿈 | 줄 끝의 공백 | |
---|---|---|---|---|
normal |
병합 | 병합 | 예 | 제거 |
nowrap |
병합 | 병합 | 아니오 | 제거 |
pre |
유지 | 유지 | 아니오 | 유지 |
pre-wrap |
유지 | 유지 | 예 | 넘침 |
pre-line |
유지 | 병합 | 예 | 제거 |
break-spaces |
유지 | 유지 | 예 | 줄 바꿈 |
code { white-space: pre; }
pre { word-wrap: break-word; /* IE 5.5-7 */ white-space: pre-wrap; /* current browsers */ }
<div id="css-code" class="box"> p { white-space: <select> <option>normal</option> <option>nowrap</option> <option>pre</option> <option>pre-wrap</option> <option>pre-line</option> <option>break-spaces</option> </select> } </div> <div id="results" class="box"> <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> </div>
.box { width: 300px; padding: 16px; border-radius: 10px; } #css-code { background-color: rgb(220,220,220); font-size: 16px; } #results { background-color: rgb(230,230,230); overflow-x: scroll; height: 400px; white-space: normal; font-size: 14px; }
var select = document.querySelector("#css-code select"); var results = document.querySelector("#results p"); select.addEventListener("change", function(e) { results.setAttribute("style", "white-space: "+e.target.value); })
<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>
{{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")}}