这里的页面非常简单:
代码:
<table>
<tr>
<td valign="top">
<input type="text" />
<iframe scrolling="no" height="21px" frameborder="0" width="62px" marginheight="0" marginwidth="0" src="Server/SecCode.php">
</iframe>
</td>
</tr>
</table>
(来源:maishudi.com)
答案 0 :(得分:1)
答案 1 :(得分:0)
使用 td 标记的 valign 属性。
..
<td valign="top">
</td>
编辑:
试试这个,
<table>
<tr>
<td><input type="text" /></td>
<td><iframe scrolling="no" height="21px"
frameborder="0" width="62px" marginheight="0" marginwidth="0"
src="http://maishudi.com/Server/SecCode.php">
</iframe>
</td>
</tr>
</table>