This problem is puzzling me, as it seems like a simple issue but I can't pinpoint the cause.
UPDATE: I have created a fiddle where you can see the problem in action: http://jsfiddle.net/X374V/1/
The form contains a basic text input:
<input type="text" name="commentor" id="commentor" />
styled with:
#commentor {
position:relative;
float:left;
margin-bottom:5px;
height:25px;
width:160px;
border-style:solid;
border-width:1px;
border-color:#000;
background-color:#CCC;
}
When trying to click into the text box to type, I've noticed that I need to click at the very top edge for it to work, clicking in the middle doesn't register. Is there a solution to fix this?