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;
}