Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要vertical-align:top“一些文字”和“其他文字”。以下对我不起作用,只有第二个单元格正确对齐。我不明白问题是什么。
vertical-align:top
<style> td { vertical-align:top; } </style> <table> <tr> <td><img src="icon.png"/> Some text </td> <td> Other text </td> </tr> </table>
而不是使用:
td { vertical-align: top; }
采用:
td { vertical-align: baseline; } td img { vertical-align: top; }