欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

Flexbox不支持圖像& # 39;的背景

錢琪琛1年前8瀏覽0評論

這是我在這里的第一篇文章。我需要在CSS中將我的背景圖片水平和垂直居中,但是無論我用什么方法,圖片都頑固地保持在它原來的位置。我已經讀了30篇關于這個問題的帖子,但似乎沒有一篇對我有用。謝謝你的任何建議

.angryjalapeno {
    width: 500px;
    height: 300px;
    background-image: url(https://placehold.co/200x200);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

<div class="angryjalapeno"></div>

移除背景尺寸:cover將圖像占位符放在div的中心。

.angryjalapeno {
    width: 500px;
    height: 300px;
    background-image: url(https://placehold.co/200x100);
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
    display: flex;
    justify-content: center;
    align-items: center;
}

<div class="angryjalapeno">
</div>

如果你的圖片大于300x500,那么你的代碼為真。但是如果它小于這個尺寸,你需要刪除背景尺寸:封面;

我建議您將背景位置屬性更改為如下所示。

background-position: center center;