<main>
  <h1>white-space: pre</h1>
<p>
  What's worse, ignorance or apathy?
  I don't know and I don't care.
</p>

  <h1>white-space: pre</h1>
<p>What's worse, ignorance or apathy?
I don't know and I don't care.</p>

  <h1>&lt;pre&gt;</h1>
<pre>What's worse, ignorance or apathy?
I don't know and I don't care.</pre>
</main>
body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  margin: 0;
  color: #fff;
  background-image: linear-gradient(20deg, #ffdea8, #e96196);
  font: 1.5rem/1.333 'Oxygen Mono', monospace;
  overflow-x: hidden;
}

@media (max-width: 500px) {
  body {
    font-size: 1.125rem;
  }
}

main {
  position: relative;
  margin: 15px 10px;
}

main::after {
  content: '';
  display: block;
  position: absolute;
  top: 16px;
  left: calc(28ch + 9px);
  bottom: 0;
  border-left: 2px dashed #fff6;
}

h1 {
  position: relative;
  z-index: 2;
  width: min-content;
  margin: 0 10px;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #000;
  font-weight: normal;
  font-size: 0.667em;
  white-space: nowrap;
  transform: translateY(50%);
}

p, pre {
  width: 28ch;
  min-width: min-content;
  margin: 0 0 15px;
  padding: 20px 10px 10px;
  border-radius: 4px;
  background-color: #0006;
}

p {
  white-space: pre;
}

pre {
  font-family: inherit;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.