Response title
This is preview!
OK, here you go (i.e. "paco.html"):
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="myStyles.css"/>
</head>
<body>
<table>
<tr>
<td><img src="myImage.png"></td>
</tr>
</table>
</body>
</html>
Now the CSS code (myStyles.css):
table, td{
width: 100%;
}
table td img{
max-width: 100%;
height: auto;
}
...and this is all. Hope it's enough.
Ah, one more thing...these properties exist in those browsers, but they don't work propertly. There is an issue when the image is inside a table with a 100% witdh.
© 2013 jQuery Foundation
Sponsored by and others.