gpt4 book ai didi

html - 主体填充未应用于背景图像

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:12 25 4
gpt4 key购买 nike

我正在为我的 body 标签做这样的填充,因为我使用的是固定顶部的导航栏。我希望导航栏始终位于顶部。

body {
padding-top: 70px;
}

现在我想给正文添加一个背景图片,并希望它覆盖整个屏幕。所以我这样做。

body {
background: url(background.jpg);
background-size: cover;
}

但问题是导航栏覆盖了部分图像,70 像素的内边距不适用于背景图像。请帮忙解决这个问题。

最佳答案

使用 background-position

中可用的偏移量将背景向下定位 70px

Background-Position @ MDN

body {
background-image: url(http://www.fillmurray.com/g/200/300);
background-position: top 70px center;
background-size: cover;
background-repeat: no-repeat;
}

关于html - 主体填充未应用于背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39172191/

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