I have this page with 1st row having 2 text boxes and 2nd row having a text box. I want to make their width same, the below code works fine in chrome, but in firefox and IE (tested in IE9) width are different. How can I make the width same in all browsers?
<!doctype html>
<html>
<body>
<form>
<input type="text" name="cnop" size="2"/><input type="text" name="cno" style="width:122px;"/><br>
<input type="text" name="cpono"/>
</form>
</body>
</html>
Chrome

Firefox
