valign ="top"在td中不起作用

3 html css html5 css3

我的td中有图像.我必须将它们对齐,但这些都显示在中间.我正在使用以下html.

<table> 
    <tr>
        <td valign="top">                       
            <img src="./images/facebook.jpg" name="facebook" border=0 width=40 height=40>
            <img src="./images/twitter.jpg" name="twitter" border=0 width=40 height=40>
            <img src="./images/linkedin.jpg" name="linkedin" border=0 width=40 height=40>
            <img src="./images/youtube.jpg" name="youtube" border=0 width=40 height=40>
        </td>
    </tr>
</table> 
Run Code Online (Sandbox Code Playgroud)

请告诉我这里出了什么问题......

Emr*_*urk 5

它已经过时了.请改用style ="vertical-align:top".