居中页眉图像

您好,
不知何故,我在我管理的论坛顶部添加了一个横幅。

但是,在不同尺寸的屏幕上工作时,图像会偏移且未居中。

如何将其居中?
以下是我使用的代码:


1 个赞

这应该可以解决问题:

.custom-header-image {
    display: flex;
    justify-content: center;

    img {
        max-width: 100%;
    }
}
5 个赞

完美运行,谢谢!

3 个赞