Has anyone seen this strange behaviour before?When I have an input field in IE9, with a fixed width, some padding and rounded corners, for some reason the last character that I type when the textbox is full does not show up. It is there, but IE does not move the string enough to the left to show the rightmost character.Here's a case to show what I mean.The first field is ok, the second field shows the behaviour I explained when you continue to type when the field is already filled up:\[code\]<!DOCTYPE html><html><head><title>Text input field</title><style type="text/css">.textItem { padding: 2px 8px 2px 2px;border-radius: 5px;}</style></head><body style="padding: 50px 200px"><form method="post"> <input type="text" size="5"/> <br/><br/> <input class="textItem" style="width: 119px" type="TEXT"/></form></body></html>\[/code\]Does anybody know how to fix this (hopefully without changing the css properties already defined)?