IE7 form hidden input field bug fix
Every HTML form may have hidden input fields. Generelly every web browser will render this input hidden field as display:none . but in ie7 it will have small gap. since we can’t replace or change the position of the input hidden fields ,if they come from any CMS it is hard. here is a simple trick that will fix the ie7 bug.
.hiddeninput { display: none; width: 0px; height:0px; margin: 0px; padding: 0px; font-size: 0px; line-height: 0px; } |