THKO

TIL — text-wrap balance for headings

til

Long headings often break with a single lonely word on the last line. One CSS declaration fixes it:

h1 {
  text-wrap: balance;
}

The browser evens out the line lengths for short blocks of text. It is meant for headings and other small text blocks, not for body copy.

← Back to all posts