1

我需要居中对齐面板。我使用以下内容:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestDefault.aspx.cs" Inherits="tregware.TestDefault" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:Panel ID="Root" runat="server" BackColor="Red"  HorizontalAlign="Center" Style="left: 0px; top: 0px; width: 100%; height: 100%; position: absolute; z-index: 0;">


<asp:Panel ID="Body" runat="server" BackColor="Blue" 
    Style="left: 0px; top: 24px;width: 800px; height: 100%; position: absolute; z-index: 0;" 
    HorizontalAlign="Center">
</asp:Panel>

</asp:Panel>
</form>
</body>
</html>

但是面板(“Body”)不会居中。我该怎么做?

4

3 回答 3

2

您已设置position: absolute,因此您用于居中元素的许多常规方法可能不起作用。

由于您设置了一个固定width800px,您可以使用:

Style="left: 50%; margin-left: -400px; ..."
于 2012-07-21T20:34:26.077 回答
1

Panel 具有Horizo​​ntalAlign的属性

<asp:Panel id="reqId" runat="server" HorizontalAlign="center" >
Your Text Here
</asp:Panel>
于 2014-05-09T18:50:50.680 回答
0

创建一个名为.panel { align:center }

然后将其添加到面板CssClass = "panel"

于 2012-07-21T20:31:58.277 回答