将网页上方的3列图像和下方的文本对齐

时间:2014-10-31 18:42:59

标签: html css

我需要3列图像和1行文本,我需要在网页中心居中。我需要图像和文本相对于屏幕大小移动。

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>