我试图将背景图像放在div元素中,但当我添加div时,它会垂直重复,即使使用background-repeat也是如此:no-repeat;我的inspect工具说我得到了溢出。我该怎么阻止这一切的发生
<head>
<style>
body {
background-color: rgb(21, 32, 43);
}
div {
background-image: url("chewy.jpg");
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
height: 200px;
}
</style>
</head>
<body>
<div>
stuff here
</div>
</body>
1条答案
按热度按时间hivapdat1#
也许可以上一节课
.header-box { background-image:url(“chewy.jpg”);背景尺寸:contain; background-repeat:无重复;背景位置:中心;高度:200 px;}