<div>
    div:nth-of-type(1) {
        white-space: normal;
    }
</div>

<div>
    div:nth-of-type(2) {
        white-space: nowrap;
    }
</div>

<div>
    div:nth-of-type(3) {
        white-space: pre;
    }
</div>

<div>
    div:nth-of-type(4) {
        white-space: pre-wrap;
    }
</div>

<div>
    div:nth-of-type(5) {
        white-space: pre-line;
    }
</div>

<div>
    div:nth-of-type(6) {
        white-space: break-spaces;
    }
</div>
div {
  width: 200px;
  border: 2px solid blue;
}

div:nth-of-type(1) {
  white-space: normal;
}

div:nth-of-type(2) {
  white-space: nowrap;
}

div:nth-of-type(3) {
  white-space: pre;
}

div:nth-of-type(4) {
  white-space: pre-wrap;
}

div:nth-of-type(5) {
  white-space: pre-line;
}

div:nth-of-type(6) {
  white-space: break-spaces;
}

body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  font-size: 1.5rem;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.