我将尽力解释这一点。我有一个2560x400 px的标题图片。但例如,图像可能是(例如2 4000x400px)。我希望能够将图像定位在屏幕中间,因此在给定屏幕中间使用ex.2将是标题图像的2000像素。

我已经可以了,设法删除水平滚动条,但是如果有人可以帮助我,我需要一些帮助:)。

html

<img class="pop" src="My image 2560x400" alt="">


的CSS

.pop {
    width: 2560px;
    height: 100%;
    overflow: hidden;
    position: center;
}

最佳答案

尝试这个:

.pop {
    width: 2560px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
}

10-07 13:46