Plz 我想问一下如何制作以下内容: - 固定所有背景(标题和内容)>>> 我做得很好。- 修复了内容滚动时的标题 >>> 我做得很好。
但问题是:因为我使用的是固定的背景图片,并且固定的标题是透明的;当页面滚动时,内容出现在标题下(因为它是透明的).....我试过给标题提供与正文相同的背景,在桌面上运行良好,但在iPad上出现异常!这就是为什么我使标题透明然后出现问题的原因。
<div class="myHeader">
<header>
<a href="index.php"><img alt="" src="images/bigLogo.png"></a>
</header>
<nav>
<ul>
<li><a href="index.php">HOME</a> </li>
<li><a href="about.php">ABOUT</a> </li>
<li><a href="ceo.php">CEO</a> </li>
</ul>
</nav>
</div>
<div class="container">
<p>bla bla bla long text here</p>
</div>
body {
background-color:#080717;
background-image: url('../images/fixedBG.jpg');
background-position: top center;
background-repeat: no-repeat;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.myHeader {
position: fixed;
width: 100%;
display: block;
height: 255px;
top: 0px;
z-index: 1;
text-align: center;
margin: 0px auto 0px auto;
}
.container {
margin: 255px auto 0px auto;
text-align: left;
width: 541px;
position: relative;
}