我需要3列图像和1行文本,我需要在网页中心居中。我需要图像和文本相对于屏幕大小移动。
答案 0 :(得分:1)
<table style="width:100%; text-align:center;">
<tr>
<td style="width:33%">
//Put your image here
</td>
<td style="width:33%">
//Put your image here
</td>
<td style="width:33%">
//Put your image here
</td>
</tr>
<tr>
<td colspan="3" style="width:100%">
//Put your text here
</td>
</tr>
</table>