I have the following situation:
HTML:
<input class="BWForm_form-control BWTextBox" disabled="disabled" id="something" title="Test Firma" type="text" value="Test Firma 11111111111111111111111111111"></input>
CSS:
// trunicate text with "..." 3 dots, if the content is larger than the current width
input[disabled="disabled"]{
overflow:hidden;
white-space:nowrap;
text-overflow: ellipsis;
}
In IE and chrome it doesnt work, except in FireFox.
I tried also: text-overflow:ellipsis doesn't work on IE, text-overflow: ellipsis not working
But it didn't take affect..
It would be nice without having a fixed width, because the width of these input fields are different.
Ty for helping