CSS Utils - acegyver/utils GitHub Wiki

#####Collection of useful and either frequently or rarely used CSS snippets.

Please, feel free to use any on my hand-made and hand-collected snippets in any of your work – whether it's for private or commercial use. We're all in this together, right? So why not help each other out?

For bug reporting, problems, issues, suggestions, you can reach me on Twitter as @webgyver.

###Truncating Text with CSS

.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}