Created
March 3, 2017 07:45
-
-
Save geeac/90103660e53c242d6e3dd75b47e953ce to your computer and use it in GitHub Desktop.
limit long titles to 1 row with css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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