I want when I minimize the window the logo of my site follow without distorting, such as when testing a site on a mobile phone or tablet, ie the image is responsive to the content, but this only happens to me in internet explorer, in the chrome and firefox already works fine!
html:
<divclass="banner">
<img class="seven-logo" src="img/7a_logo_center3.png" alt="logo_centro">
</div>
CSS3
img.seven-logo{
display: block;
margin-left: auto;
margin-right: auto;
vertical-align: middle;
top: 50%;
left: 50%;
}
/*RESPONSIVE_IMAGE PARA FIREFOX*/
@-moz-document url-prefix() {
img.seven-logo{
width: 100%;
max-width:600px;
max-height:156px;
}
}