横幅图片在不同屏幕尺寸下未保持居中

你好 :wave:

我的“欢迎来到”图片在调整屏幕尺寸或将窗口移动到不同尺寸的屏幕时,无法保持居中。

有什么办法可以解决这个问题吗?

非常感谢


2 个赞

花了点时间才找到您的网站,但是……这是那个偏离中心的背景图片的 CSS

.search-banner {
    background-image: var(--custom-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

这是修复后的 CSS

.search-banner {
    background-position: center;
    background-image: var(--custom-bg);
    background-size: cover;
    background-repeat: no-repeat;
}

2 个赞

太棒了,奏效了!感谢您的帮助。

1 个赞

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.