Quote:
Originally Posted by Turtle91
If you are using an svg image then it will scale without getting over-pixelated and fuzzy. For all other image types I put some protection in the css to prevent that. I set max-width to the maximum size in pixels I want the image to expand (usually I set the actual image width here)
Code:
img {width:95%; max-width:400px}
<img alt="" src="test.png" />
|
400px is awfully small for a 300dpi Reader. would go with...
Code:
img [
max-width: 100%;
}