Prevent Long URL's From Breaking Out with CSS
This solution will help you to prevent many issues with your site, when you need
to prevent long URL's from breaking out of container.
[View All Snippets]
[View All Snippets]
Show Plain Text »
- <style type="text/css">
- .break {
- -ms-word-break: break-all;
- word-break: break-all;
- word-break: break-word;
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
- }
- .ellipsis {
- width: 250px;
- white-space: nowrap;
- overflow: hidden;
- -ms-text-overflow: ellipsis; /* Required for IE8 */
- -o-text-overflow: ellipsis; /* Required for Opera */
- text-overflow: ellipsis;
- }
- </style>