我有一些代码使用中心标签将屏幕上的两个按钮居中:
<center>
<input type="button" onclick="parent.window.close();" value="Close Window" id="Button1" name="Button1" />
<%
if (Session["MyRoleName"].ToString().ToUpper() == "SUPERMANADMIN")
{
%>
<input type="button" onclick="if (confirm('ARE YOU SURE? This cannot be undone except by IT at great cost!')) { PurgeCourse(); }" value="Purge Course Comments" id="Button2" name="Button2" />
<% } %>
</center>
由于不推荐使用中心标签,我想我会尝试用<div>
标签替换它,并将边距设置为边距:0 auto。这没有使按钮在屏幕上居中。
我的问题是,如何在不使用<center>
标签的情况下将这两个按钮水平居中在屏幕上?