设置宽度没有问题,但是在上传肖像图像时它看起来很烦人,我希望所有图像都具有相同的宽度和高度,但保持图像看起来不错(没有拉伸/压迫)。也许像时间轴中的 facebook 照片个人资料,
这是我的问题:https ://d8e7ec01-a-62cb3a1a-s-sites.googlegroups.com/site/vanyfiles/1-horz.jpg
我的html代码:
<table>
<tr>
<td id="thumb_img">
<img src="images/e-magz.png" width="100%" height="100%"/>
</td>
<td id="thumb_news">
<div id="date">February 7,2013</div>
<a href="#">This is Photoshop's version of Lorem Ipsum. Proin gravida nibh</a>
</td>
</tr>
</table>
我的CSS代码:
#thumb_news{
padding: 5px;
}
#thumb_img{
width: 25%;
height: 100px;
overflow: hidden;
left: 0;
right: 0;
padding-right: 5px;
}