Responsive Design - Scale Images
Image scales with correct aspect ration based on window size.
HTML
<p>Responsive Design - Scale Images</p>
<img src="http://colinsoderstrom.com/images/Colin1.jpg" />
CSS
img {
max-width:100%;
height:auto;
}
<p>Responsive Design - Scale Images</p>
<img src="http://colinsoderstrom.com/images/Colin1.jpg" />
img {
max-width:100%;
height:auto;
}