Encountering a problem with the IE browser (all versions up to IE 10). Here's the issue.
The text in the input box is overlapping its background image. Unable to place this image in the parent div due to the dynamic nature of the input box and other functionalities. Also, unable to increase the width of the textbox beyond 100px as the value contains about 50 characters.
Please assist with a solution.
CSS
.some {
background:url(http://cmsresources.windowsphone.com/windowsphone/en-us/How-to/wp8/inline/hardware-icon-search-button.png) no-repeat right center;
padding:1px 15px 1px 1px;
border:1px solid #ccc;
width:100px;
color:red;
overflow:hidden;}
HTML
<input type="text" class="some" value="I am a messy input box" />