想讓如圖表格中的文字的紅色背景頂在表格的上部,使用valign="top"沒有任何的反應。
因為紅色的是文字的背景色,不知道如何更改HTML和CSS樣式才能使紅色背景置頂。
relative定位,設置下top
<style>td{position:relative;font-size:12px}
span.note{position:relative;background:#f00;color:#fff;top:-8px}</style>
<table border="1">
<tr><td align="right">目錄:</td><td><input type="text"/><span class="note">不能為空</span></td></tr>
</table>