logoalt Hacker News

purplemoonxyesterday at 2:39 PM0 repliesview on HN

A link halfway down the page is causing the whole thing to have wide horizontal scroll.

    [that links selector] {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 100%;
        display: inline-block;
    }
Fixes it but seems overkill - why isn't white-space nowrap; ever enough?

Or break-word - feel like nobody uses that one even though it has the best name for what I want to do.

Anyway