The Easiest Way to Save and Share Code Snippets on the web

Ellipsis, wished it was cross-browser

css | by: thierrylam

last edit: Jul, 1st 2009 | jump to bottom

/* The ellipsis will only show up in IE assuming the DOCTYPE is not transitional XHTML or strict XHTML */
 
width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
 
70 views