我正在为共享点制作一个新的母版页,其中包括 3 层。我首先在 php 中创建了页面,它在 Chrome 中完美运行,然后在添加<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
为第一行之后,我终于能够让 z-index 在 IE8 中正常工作。但是,当我随后添加必要的代码以使其成为母版页时,分层不再在 Chrome 或 IE8 中起作用。
代码:-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ Master Language="C#" %>
<%@ Register tagprefix="SharePoint" namespace="Microsoft.SharePoint.WebControls" assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
<html dir="ltr">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<SharePoint:RobotsMetaTag runat="server"></SharePoint:RobotsMetaTag>
<title>Untitled 1</title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
<style>
.gradient{
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#b3ab87, endColorstr=#7c796a)";
background: -webkit-gradient(linear, left top, left bottom, from(#b3ab87), to(#7c796a));
}
.gradient2{
background: -webkit-gradient(linear, left top, right top, from(#dded9e), to(#fff), color-stop(0.7, #fff));
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFdded9e, endColorstr=#FFFFFFFF, GradientType=1)";
}
.gradient3{
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#7c796a, endColorstr=#b3ab87)";
background: -webkit-gradient(linear, left top, left bottom, from(#7c796a), to(#b3ab87));
}
a:link{
color:orange;
}
</style>
</head>
<body bgcolor="#b3ab87" style="font-family:'Arial';margin:0;padding:0">
<form id="form1" runat="server">
<div style="margin:0 auto;width:960px;position:relative">
<div style="background-image:url('../SiteAssets/headerMainNEW.jpg');width:960px;height:155px;top:0;position:relative;z-index:2">
<div style="top:40px;left:50px;font-size:2.9em;font-family:'Calibri';color:#938d81;position:relative;z-index:3">
Site Name
</div>
<div style="float:right;width:195px;height:35px;margin-top:-52px;position:relative" class="gradient2">
</div>
</div>
<div style="width:970px;margin-left:-5px;margin-top:-155px;height:155px;z-index:1;position:absolute" class="gradient">
</div>
<div style="width:970px;margin-left:-5px;margin-top:-19px;z-index:1;position:relative;overflow:auto" class="gradient3">
<div style="margin:0 auto;width:960px;position:relative;margin-top:18px;background-color:#777777;z-index:2">
<asp:ContentPlaceHolder id="PlaceHolderMain" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
<div style="color:#ffffff;font-size:0.75em;line-height:18px;position:relative">
<div style="margin:10px">
<span style="float:left">
Footer text left
</span>
<span style="float:right">
Footer text right
</span>
</div>
</div>
</div>
</form>
</body>
</html>