text-overflow:ellipsis doesn't work on IE DOESNT SOLVE THE PROBLEM HERE. In this case -ms-text-overflow
doesn't apply the ellipsis here.
Ellipsis not working in IE8 and 9. It seems -ms-text-overflow
property is not doing anything.
<div class="client">
<span class="client-name">Some Client Long Name</span>
</div>
.client {
display: block !important;
white-space: nowrap !important;
text-overflow: ellipsis !important;
-ms-text-overflow: ellipsis !important;
width: 170px !important;
overflow: hidden;
word-wrap: normal !important;
float:left;
padding: 8px 10px 0px 10px;
}
.client-name {
color: #AFAFAF;
font-size: 20px;
text-transform: uppercase;
}