Heim >Web-Frontend >HTML-Tutorial >不同元素对齐的问题:需要底部,或者是中间对齐。_html/css_WEB-ITnose

不同元素对齐的问题:需要底部,或者是中间对齐。_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:15:521205Durchsuche

<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>


怎么写样式可以让image1和text1底部对齐(或者中间对齐)??

按照上面的写法,image1的显示位置总会高于text1
(貌似image1的底部是和text1的中间对齐的,如果将两个元素分别放到不同的TD,垂直对齐样式就又起作用了!)。

按照上面的写法,使用CSS怎么设置对齐?


回复讨论(解决方案)

image1和text1底部对齐:

<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>

原来我样式加错了,我一直往TD上加,都不起作用。。。

用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>

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn