> When setting sizes with CSS are you keeping the image aspect ratio the same? > I'm not sure but I would imagine that changing the aspect ration would put > in extra calculations when rendering the image and scrolling.
keeping ascpect ratio by using:
.wide { width: 100%; height: auto;}
.tall { width: auto; height: 100%;}
