2

CSS 中是否发生了一些我不知道的变化?我正在尝试将图像放在屏幕的右下角。我不知道它为什么这样做,但它似乎将图像推离了我看不到的屏幕。如果我删除bottom它,它会将图像放在右侧而不是底部。如果我这样做right top,图像会显示在右上角。right bottom那为什么不显示在

*{
    box-sizing: border-box;
    font-family: BentonSans, 'Lucida Sans', 'Lucida Grande', sans-serif;
    color: rgb(102, 102, 102);
    outline: none;
    border: 0;
}
body{
    font-size: 12pt;
    padding: 0;
    margin: 0;
    background-image: url("/media/images/image1.jpg");
    background-position: right bottom;
    background-repeat: no-repeat;
}
4

1 回答 1

6

我怀疑它与容器大小有关。

你的CSS中有这个吗?

html, body {
    min-height: 100%;
    min-width: 100%;
}
于 2013-03-13T00:57:19.323 回答