<table>
<tr>
<td>1</td>
<td>2</td>
<td>
3
4
</td>
</tr>
</table>
就是要3向顶对齐,4向低对齐,不许使用height属性,可以加任何其它标记,如div span,只是不允许height
怎么会纠结这个问题?不知道楼主想干什么?只是为了好玩?说说你的需求。
给td加position: relative
里面
<span style="position: absolute; top: 0;">3</span>
<span style="position: absolute; bottom: 0;">4</span>
这样试试
使用sub和sup标记呢?
<table>
<tr>
<td>1</td>
<td>2</td>
<td>
<sub>3</sub>
<sup>4</sup>
</td>
</tr>
</table>
<table>
<tr>
<td Valign="top">3</td>
<td Valign="bottom">4</td>
</tr>
</table>