使用CSS,我試圖將div Wrapper放在屏幕上。它適用於Mozilla,但它不適用於IE 11.我不知道爲什麼。我的網頁是在Windows Server 2008上運行中心div在屏幕上,不工作在IE11上,但它在Firefox中工作
CSS
div#wrapper
{
width: 1250px;
min-width:1250px;
max-width:1250px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom:0;
margin-left: auto;
margin-right: auto;
margin: auto;
border: 2px solid red;
}
ASPX:網頁在Mozilla
<head runat="server">
<title></title>
<link href="Styles/Site.css" type="text/css" rel="stylesheet" />
</head>
<body>
<form id="form1" runat="server">
<div id="wrapper">
HELLO
<br />
<asp:Button ID="Button1" runat="server" Text="Button" />
</div>
</form>
</body>
IE11中的網頁圖像。正如你看到的,DIV是不是在屏幕居中:
你應該在IE11中工作。可能還有其他相互衝突的風格。 –