画像を縮小出来るけどブラウザによっては画像がボケるから
本来は縮小したサムネイル画像を作った方が良いのですが、
(例:枠を100pxにする場合)
width="" height=""を好きに変更すると画像は強制的に縮小拡大します。
<img src="example.jpg" width="100" height="100" alt="*" />
画像を width="100" height="100" のようにすれば良い。
毎回画像のwidth="" height=""を変更するのも面倒というなら
CSSでどうでしょう。(画像.imgのみ入れ替えてみる)
<html>
<head>
<style type="text/css">
td{ width:100px;}
.table1 td img{ width:100px; height:100px;}
.table2 div{ width:100px; height:100px; overflow:hidden;}
/* または、overflow:hidden; を→ overflow:auto; */
</style>
</head>
<body>
<div>
<table class="table1" border="1">
<tr>
<td>1</td>
<td><img src="example.jpg" width="260" height="260" alt="*" /></td>
</tr>
</table>
<table class="table2" border="1">
<tr>
<td>2</td>
<td><div>
<img src="example.jpg" width="260" height="260" alt="*" />
</div></td>
</tr>
</table>
</div>
</body>
</html>
お礼
ありがとうございます。やってみます