css 为什么我的容器背景图像如此放大?

44u64gxh  于 2023-01-22  发布在  其他
关注(0)|答案(2)|浏览(175)

我在浏览器上放大容器的背景图像时遇到问题。图片宽1200px,我的容器也宽1200px。我将其设置为. container选择器的背景图像。当我在浏览器中加载它时,它只显示图像的一小部分,因为它已经放大了。为什么会发生这种情况?
超文本:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<main role="main">
<article role="article">
<section>
<header>
<div class="container">

</div>   
</header>
</section>    
</article>
</main>
</body>
</html>

CSS:

@font-face {
  font-family: "Brandon Grotesque";
  src: url("fonts/Brandon_Grotesque/Brandon_reg.otf")
  format("opentype");
}

html, body {
  padding:0;
  margin: 0;
  background-color:#222222;
}

body {
  font-family:"Brandon Grotesque";
  width: 1200px;
  margin: 0 auto;
}

.container {
  width: 1200px;
  height:600px;
  background-image:url("img/background.jpg");
  text-align:center;
  margin:auto;
  padding:0;
}

我错过什么了吗?

e3bfsja2

e3bfsja21#

你需要为你的background-image指定更多的属性,如下所示:

.container {
  width: 1200px;
  height:600px;
  background-image: url("img/background.jpg");
  background-size: cover; /* or "contain" depending on what you want */
  background-position: center center;
  background-repeat: no-repeat;
  text-align:center;
  margin:auto;
  padding:0;
}

background属性的详细说明可在官方MDN Web Docs中找到。

7lrncoxx

7lrncoxx2#

这个很好用!

background:rgb(37, 16, 13) url("images/bc02.jpg");
background-repeat: no-repeat;
width: 100%;
height:100%;
background-position: center center;
text-align:center;
margin:auto;
padding:0;

相关问题