Seems so simple, but ...
scale image size with window size?
1)create a container for the image = entire window width, so container grows with window width
2)slap image inside the container
3)scale image based on % of the width of the container
HTML
<div class="imgEnclosure">
<img class="validatedImage"
src="1776_Support/images/check_mark.png" alt="thisImage"
onclick="SwapImages(this); return false" />
</div>
CSS
.imgEnclosure {
width: 100%;
}
.validatedImage {
/* original size (w,h) = 220px by 108px */
/*
1.0em = font-size: 24px from html Selector
so ... original size = 9.167em by 4.500em
*/
max-width: 30%;
min-width: 10%;
height: auto;
}
The image shows the same size no matter how I change the browser window width.