EDIT:I followed the suggestions that had been mentioned in the following comments.Then,Its working in IE well,but problem still persists in Google Chrome...Could somebody help me....Here is the code that came after changes
<!DOCTYPE HTML>
<html>
<head>
<style>
.inputBox{
white-space:nowrap;
font-size:0;
}
.inputBox input{
border:1px solid #9AAABD;
box-shadow:inset 0px 1px 3px #b7c2d0;
float:left;
}
.iconHolder{
background:#fff url('ComboBoxArrow_regular.png') 50% 50% no-repeat;
width:12px;
height:19px;
line-height:12px;
font-size:16px;
float:left;
}
.iconHolder:hover{
background:#007DC0 url('ComboBoxArrow_hover.png') 50% 50% no-repeat;
}
</style>
</head>
<body>
<span class="inputBox">
<input type="text">
<span class="iconHolder"></span>
</span>
</body>
</html>
Here are the two images:


I want to develop a drop down list box.I am using input filed and a <span> tag which will hold the down arrow icon to get the list box look.
The problem is there is an unnecessary gap between input field and span which is really ugly.Can that gap be removed? Here is the sample application. Here I used V for test purpose but actually there should be an image.
Note: The span's height should be equal to input's tag,And if we change the resolution of the browser thier alignment should not be distorted....
Thanks in advance