Last active
January 28, 2016 02:46
-
-
Save gabriel/35c2670f4b0ba917c7d6 to your computer and use it in GitHub Desktop.
css lines
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
// These might be good globals | |
line1: { | |
overflow: 'hidden', | |
display: '-webkit-box', | |
textOverflow: 'ellipsis', | |
WebkitLineClamp: 1, | |
WebkitBoxOrient: 'vertical' | |
}, | |
line2: { | |
overflow: 'hidden', | |
display: '-webkit-box', | |
textOverflow: 'ellipsis', | |
WebkitLineClamp: 2, | |
WebkitBoxOrient: 'vertical' | |
}, | |
line4: { | |
overflow: 'hidden', | |
display: '-webkit-box', | |
textOverflow: 'ellipsis', | |
WebkitLineClamp: 4, | |
WebkitBoxOrient: 'vertical' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment