To adapt usability of the platfrom for mobile devices, I need ti utilize the css property hyphens. However, this property seems not to work in Chrome. Am I doing something wrong or are there any other solutions how to overcome it?
.title {
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto; }
This works pretty fine in Firefox and Safari, but not in Chrome. Any help?