gpt4 book ai didi

html - 外部固定背景图像不显示

转载 作者:行者123 更新时间:2023-11-28 01:00:21 25 4
gpt4 key购买 nike

我刚开始学习 HTML,我已经坚持了几个小时。

图片不会显示。

.background {
background-image: url(https://c1.staticflickr.com/9/8153/7297534158_55171c3bf1_b.jpg);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
<meta charset="utf-8">
<title>Preptechies: The Wiki</title>
<link rel="stylesheet" href="Assets/main.css">
</head>

<body>
<div class="wrapper">
<header id="header">
<h1>Welcome to our <strong>Webpage</strong>!!</h1>
<h2>This is our group members</h2>
</header>

<div class="background">

</div>

</div>
</body>

</html>

我从 W3Schools 中获取了 CSS,因为我想让图像适合整个背景,并且在滚动浏览器时不会重复和移动。

最佳答案

问题是 .background 没有高度。

是的,您有 height: 100%,但这是相对于没有高度的 .wrapper 而言的。

添加:html, body, .wrapper { height: 100% } 来解决这个问题。

.background{
background-image: url(https://c1.staticflickr.com/9/8153/7297534158_55171c3bf1_b.jpg);
height: 100%;

background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

html, body, .wrapper { height: 100% }
   <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Preptechies: The Wiki</title>
<link rel="stylesheet" href="Assets/main.css">
</head>

<body>
<div class="wrapper">
<header id="header">
<h1>Welcome to our <strong>Webpage</strong>!!</h1>
<h2>This is our group members</h2>
</header>

<div class="background">

</div>

</div>
</body>
</html>

关于html - 外部固定背景图像不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52711539/

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