Thanks, Turtle91 and JSWolf! Learning a lot from you guys.
Please tell me if I understand you correctly . . .
Some hi-res e-readers stretch images to take up space, in which case low-res images can look terrible. We can fix this by doing something like the following:
Code:
<img alt="" src="../Images/img_3.jpg" width="90%" style="max-width:600px"/>
This will prevent the image from being stretched more than 600 pixels, which is its full width.
Is that correct?