CSS Code:
.wrapper {
margin-right: 75px;
float: left;
position: relative;
}
.input-large {
width: 210px;
}
.label-a {
float: left;
}
.label-b {
float: right;
}
HTML Code:
<div class="wrapper">
<div>
<label class="label-a">label-a</label>
<label class="label-b">label-b</label>
</div>
<input class="input-large" type="text" />
</div>
View screenshot for IE 11 and Chrome comparison
Can anyone explain why the input field is positioned differently in IE 11 compared to Chrome?