How can I force a `span` to not wrap at the end of a line?
Try span { white-space: pre; } or any other value that fits from the w3c spec: normal This value directs user agents to collapse sequences of white space, and break lines as necessary to fill line boxes. pre This value prevents user agents from collapsing sequences of white space. Lines are only broken at preserved … Read more