Skip to content

Instantly share code, notes, and snippets.

@geeac
Created March 3, 2017 07:45
Show Gist options
  • Save geeac/90103660e53c242d6e3dd75b47e953ce to your computer and use it in GitHub Desktop.
Save geeac/90103660e53c242d6e3dd75b47e953ce to your computer and use it in GitHub Desktop.
limit long titles to 1 row with css
.products h3 {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment