Try this solution with with pure css http://jsfiddle.net/sandeep/4RPFa/72/
May be the main problem with your html. Your not use quote when you define class & image height in your html.
CSS:
.frame {
height: 25px; /* equals max image height */
width: 160px;
border: 1px solid red;
position:relative;
margin: 1em 0;
top: 50%;
text-align: center;
line-height: 24px;
margin-bottom:20px;
}
img {
background: #3A6F9A;
vertical-align: middle;
line-height:0;
margin:0 auto;
max-height:25px;
}
EDIT :
When i work around with the img tag it's leave 3px to 2px space from top. Now i decrease line-height & it's work.
css:
.frame {
height: 25px; /* equals max image height */
width: 160px;
border: 1px solid red;
margin: 1em 0;
text-align: center;
line-height:22px;
*:first-child+html line-height:24px; /* for IE7 */
}
img {
background: #3A6F9A;
vertical-align: middle;
line-height:0;
max-height:25px;
max-width:160px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.frame {
line-height:20px; /* webkit browsers */
}
the line-height property is render differently in different browsers. So; we have to define different line-height property browsers
Check this example http://jsfiddle.net/sandeep/4be8t/11/
Check this example about line-height different in different browsers input height differences in Firefox and Chrome
.frame's top-border and image's top must be equal to the margin between.frame's bottom-border and image's bottom. – arnaud576875 Sep 2 '11 at 18:51