Quantcast
Channel: web development tutorials » Html
Viewing all articles
Browse latest Browse all 12

input hidden ie7

$
0
0

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;
}

Viewing all articles
Browse latest Browse all 12

Latest Images

Trending Articles



Latest Images