如何将图像中的文本居中与图像

时间:2016-09-19 07:10:33

标签: asp.net vb.net

我想将我用红色圈出的文字移动到中心位置。有谁知道怎么做?表格中的文字和图像。不幸的是,文本的位置不在中心。

enter image description here

2 个答案:

答案 0 :(得分:0)

试试这个

    <table>
        	<tr>
        		<td>
        			<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/2000px-HTML5_logo_and_wordmark.svg.png" alt="Smiley face" height="200" width="200"7>
        		</td>
        	</tr>
        	<tr>
        		<td align="center">
        			Test
        		</td>
        	</tr>
        </table>

答案 1 :(得分:0)

我找到了解决方案。我只是将它添加到我的CSS中。

.td {
vertical-align: middle;
text-align: center;
font-size: 35px;

}