--- title: tab-size slug: Web/CSS/tab-size tags: - CSS - CSS Property - CSS Text - Reference - 'recipe:css-property' translation_of: Web/CSS/tab-size ---
CSS tab-size
속성은 탭 문자(U+0009)의 너비를 조절합니다.
/* <integer> 값 */ tab-size: 4; tab-size: 0; /* <length> 값 */ tab-size: 10px; tab-size: 2em; /* 전역 값 */ tab-size: inherit; tab-size: initial; tab-size: unset;
{{CSSInfo}}
pre { tab-size: 4; /* Set tab size to 4 characters wide */ }
pre { tab-size: 0; /* Remove indentation */ }
다음 예제는 기본 탭 크기를 사용자 지정 탭 크기와 비교합니다. {{cssxref("white-space")}} 속성을 pre
로 설정해서 탭 문자가 접히지 않도록 했습니다.
<p>no tab</p> <p>	default tab size of 8 characters wide</p> <p class="custom">	custom tab size of 3 characters wide</p> <p> 3 spaces, equivalent to the custom tab size</p>
p { white-space: pre; } .custom { tab-size: 3; -moz-tab-size: 3; }
{{EmbedLiveSample('기본_크기와_비교')}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Text', '#tab-size-property', 'tab-size')}} | {{Spec2('CSS3 Text')}} | Initial definition |
{{Compat("css.properties.tab-size")}}