Looking for help on how to eliminate the space between the right side of an input textbox and a red border? Check out these examples:
IE: http://jsfiddle.net/fQHGA/
<div style="float:left;border:1px solid red">
<label style="float:left">asdasdfasdff</label>
<input style="display:block;margin-left:100px">
</div>
For IE and Chrome: http://jsfiddle.net/cxDvF/2/
<div style="float:left;border:1px solid red">
<div>
<label style="float:left">asdasdfasdff</label>
<input style="display:block;margin-left:100px">
</div>
</div>
Any advice is appreciated. Thanks!