我有一个 asp 页面,我试图在其中对齐。以下是具体线路,
<td style="height: 50px; background-color: #ffffe0; text-align: center; ">
此代码在 IE 中运行良好,但在 FF 和 chrome 中,文本左对齐。如果我更改相同的代码
<td style="height: 50px; background-color: #ffffe0; text-align: -moz-center; ">
然后对齐仅在FF中有效。IE 和 chrome 失败:(。谁能告诉我如何解决这个问题?
更新:
整个表结构是这样的,
<table style="width: 900px; height: 500px; background-color: gray;">
<tbody>
<tr>
<td style="height: 70px; vertical-align: middle; background-color: #fffff0; text-align: center !important; width: 160px;">
<div id="abc" style="height:40px;width:80px;text-align: center !important ;left: 0px; position: relative; top: 0px" onscroll="JavaScript:document.getElementById(somejavascrpt)'">
<input id="button" type="image" style="height:40px;width:60px;border-width:0px;z-index: 104; left: 4px; text-align: center !important position: absolute; top: 2px" src="../images/help.png" name="help">
</div>
</td>