Hacker News new | past | comments | ask | show | jobs | submit login

The content is wrapping at every character, rather than on word boundaries or with hyphenation.

The relevant styles:

  .subcol {
    hyphens: auto;
    word-break: break-all;
  }
`word-break: break-all` should be replaced with `overflow-wrap: break-word`. Those two properties are quite subtle in their meaning and interactions.



Also toss in for full effect:

    text-align: justify;
    -webkit-hyphens: auto; /* Safari */




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: