Here's an example snippet of code in HTML:
<form>
<input type="file" id="iefile">
</form>
<form>
<input type="file" id="iefile">
</form>
This is how it looks with some CSS styling:
form{
position:relative;
}
#iefile{
position:absolute;
top:-10px;right:-20px;
width:100px;
height:100px;
}
When viewed in IE8, the result is:
I have a total of 10 forms. In the example above, only 2 are shown. I want to align all input elements together. This works fine on Firefox and Chrome, but there are issues with IE8.