gpt4 book ai didi

HTML 和 CSS 全图背景

转载 作者:太空宇宙 更新时间:2023-11-03 22:44:41 25 4
gpt4 key购买 nike

看来我的完整形象并没有一直到顶部。

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;
}

My image

最佳答案

我认为您应该添加 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>

关于HTML 和 CSS 全图背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42539608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com