I have searched both this forum and Google before posting this question, but unfortunately, the methods provided do not seem to work for me. Perhaps I am doing something incorrectly.
The page I am working on looks like this: enter image description here
On this page, I have several images and I am using the following CSS code:
display: inline-block;
width: 100% \9;
max-width: 100%;
min-height: 75px;
height: auto !important;
height: 75px;
In Firefox browser, both the top and bottom images display correctly, but in Internet Explorer, all images stretch to full height, filling up the entire website.
If I remove the line:
height: auto !important;
then the image height on Internet Explorer is perfect, but in Firefox, the bottom images stretch.
How can I solve this problem?
Thank you.