日期:2014-05-17 浏览次数:20688 次
<table> <tr> <td> <input type="text" style="height:16px; width:27px" id="text1" /> <input type="image" src="images/logo.gif" style="height:16px; width:16px;" id="image1" /> </td> </tr> </table>
<table> <tr> <td> <input type="text" style="height:16px; width:27px" id="text1" /> <input type="image" src="images/logo.gif" style="height:16px; width:16px; vertical-align:bottom" id="image1" /> </td> </tr> </table>
------解决方案--------------------
用css 控制 最终还是会遇到 兼容的问题,还不如改页面的好呢。
<table> <tr> <td> <input type="text" style="height:16px; width:27px" id="text1" /> </td> <td> <input type="image" src="images/logo.gif" style="height:16px; width:16px;" id="image1" /> </td> </tr> </table>