看来我的完整形象并没有一直到顶部。
html,body{
height: 100%;
width: 100%;
color: #000;
margin: 0;
padding: 0;
}
.nav-bar{
font-size: 30px;
text-align:center;
position:relative;
font-family:navfont;
}
.nav-bar > a{
text-decoration: none;
color: inherit;
}
.nav-bar a:hover{
color:#FF0000;
}
.backgroundimg{
background: url("../img/background.jpg");
background-size: cover;
position: relative;
background-position: center center;
height: 100%;
width: 100%;
z-index:-1;
}
我认为您应该添加 backgroundimg
给你上课 <body>
标记,因为我很确定您的 HTML 标记是这样的:
<html>
<head>
...
</head>
<body>
<nav>
...
</nav>
<div class="backgroundimg">
...
</div>
</body>
</html>
应该更像这样:
<html>
<head>
...
</head>
<body class="backgroundimg">
<nav>
...
</nav>
</body>
</html>
我是一名优秀的程序员,十分优秀!