我在浏览器上放大容器的背景图像时遇到问题。图片宽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;
}
我错过什么了吗?
2条答案
按热度按时间e3bfsja21#
你需要为你的background-image指定更多的属性,如下所示:
background
属性的详细说明可在官方MDN Web Docs中找到。7lrncoxx2#
这个很好用!