Simple CSS Truncate styling to control the length of a line of text on a website. This uses the Ellipsis CSS property. Useful for responsive styling.
#textyouwanttoStyle { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }