我已经将五张图片排成一行,每张图片下方都有文字,我正在努力使其具有响应性。问题是所有图像都没有正确按比例缩小。我希望它们都具有相同的宽度和高度。
到目前为止我的代码:
<table>
<tr>
<td>
<img src="http://thumbs.dreamstime.com/thumb160_268/1210514734LWUcju.jpg" />
<p>testing text</p>
</td>
<td>
<img src="http://thumbs.dreamstime.com/thumb160_268/1210514734LWUcju.jpg" />
<p>Longerishhh texting text</p>
</td>
<td>
<img src="http://thumbs.dreamstime.com/thumb160_268/1210514734LWUcju.jpg" />
<p>Text</p>
</td>
<td>
<img src="http://thumbs.dreamstime.com/thumb160_268/1210514734LWUcju.jpg" />
<p>Quite long text</p>
</td>
<td>
<img src="http://thumbs.dreamstime.com/thumb160_268/1210514734LWUcju.jpg" />
<p>More testing</p>
</td>
</tr>
</table>
CSS:
html{
width: 100%;
}
table{
width: 80%;
}
td{
display: table-cell;
width: 20%;
text-align: center;
overflow: hidden;
vertical-align: baseline;
}
img{
width: 100%;
}