如何在IE8中对齐div中心的按钮。在IE7中工作正常,但在IE8中没有工作
<div id="dPopupFooter" style="background-color: #d9d9d9; position: absolute; z-index: 5;
bottom: 0px; width: 100%; height: 30px; border-top: solid 1px #acacac; text-align: center; padding-top: 3px;">
<table><tr><td><xrx:CustomButton id="btnClose" runat="server" OnClientClick="ClosePopup();" /></td></tr></table>
</div>
答案 0 :(得分:0)
CSS(样式块或样式表):
#dPopupFooter table tr td {
text-align: center;
}
是的,它有效,你就是看不到它。问题是你的桌子没有100%的宽度:
#dPopupFooter table {
width:100%
}