Ellipsis is not working in Firefox and IE, when was giving 100% to the input field, Can Anyone help me out this. Here is my sample code.
Note: I can't hard code the width and max-width of input field.It should occupy it's innerDiv complete width.
.mainDiv {
width: 500px;
height: 200px;
}
.innerDiv {
width: 50%;
}
.inputField {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
<div class="mainDiv">
<div class="innerDiv">
<input class="inputField" type="text" />
</div>
</div>