--- title: white-space slug: Web/CSS/white-space translation_of: Web/CSS/white-space ---
{{CSSRef}}

此 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;

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

{{EmbedLiveSample("white-space", "100%", 530, "", "", "example-outcome-frame")}}

{{cssinfo}}

Syntax

 white-space 的特性值為下列其中之一。

Values

normal
連續的空白字元會被合併(collapse),換行字元被視為空白字元。換行只在被文字空間限制時發生。
nowrap
對待空白字元的方式跟 normal 一樣,且會強制不換行。
pre
連續的空白字元都會被保留。換行在有換行字元以及{{HTMLElement("br")}}時發生。
pre-wrap
連續的空白字元都會被保留。換行會在換行字元、有{{HTMLElement("br")}}元素以及被文字空間限制時發生。
pre-line
連續的空白字元會被合併(collapse)。換行在換行字元、 {{HTMLElement("br")}}以及被文字空間限制時發生。

下列表格整理了各項 white-space 值的行為:

  New lines Spaces and tabs Text wrapping
normal Collapse Collapse Wrap
nowrap Collapse Collapse No wrap
pre Preserve Preserve No wrap
pre-wrap Preserve Preserve Wrap
pre-line Preserve Collapse Wrap

Formal syntax

{{csssyntax}}

Examples

Basic example

code {
  white-space: pre;
}

Line breaks inside {{HTMLElement("pre")}} elements

pre {
  word-wrap: break-word;      /* IE 5.5-7 */
  white-space: -moz-pre-wrap; /* Firefox 1.0-2.0 */
  white-space: pre-wrap;      /* Modern browsers */
}

See it in action

Source

    <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 + Result

{{ EmbedLiveSample('See_in_action', '80%', '500px') }}

Specifications

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

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (normal and nowrap) 1.0 {{CompatVersionUnknown}} {{CompatGeckoDesktop("1.0")}} 5.5[1] 4.0 1.0 (85)
pre 1.0 {{CompatVersionUnknown}} 1.0 6.0 4.0 1.0 (85)
pre-wrap 1.0 {{CompatVersionUnknown}} {{CompatGeckoDesktop("1.0")}}{{property_prefix("-moz")}}
{{CompatGeckoDesktop("1.9")}}
8.0 8.0 3.0 (522)
pre-line 1.0 {{CompatVersionUnknown}} {{CompatGeckoDesktop("1.9.1")}} 8.0 9.5 3.0 (522)
Support on <textarea> 1.0 {{CompatUnknown}} {{CompatGeckoDesktop("36")}} 5.5 4.0 1.0 (85)
Feature Android Edge Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}

[1] Internet Explorer 5.5+ supports {{Cssxref("word-wrap")}}: break-word;.

See also