The two images in the right column of the webpage were vertically stretched to approximately 500% of their estimated size when viewed in Google Chrome. In Firefox / IE, they look great.
Matching HTML markup
<div class="right_column">
<div class="photo">
<img height="80%" width="80%" alt="chalet" src="photos/slides/DSCF0024.JPG"/>
</div>
<div class="photo">
<img height="80%" width="80%" alt="bateaux" src="photos/slides/DSCF0418.JPG"/>
</div>
</div>
and CSS:
.right_column {
float:right;
overflow:hidden;
padding:0 5px 0 0;
width:275px;
}
.photo img {
border:1px solid #666666;
margin-top:30px;
padding:4px;
}
Edit
I fixed the problem and removed the link to the webpage (in case of confusion)
Dónal source
share