背景图像卡在div中的某个位置

时间:2012-05-29 18:45:35

标签: css image

我的背景图像小于它所在的div。我想在div中设置它的位置。

我试过

background:url(../img/logo.png ) transparent no-repeat fixed ; background-position: 75px -200px;

无论我如何定位图像,它都不会移动。可能导致这种情况的原因。

3 个答案:

答案 0 :(得分:0)

DIV是否具有设定宽度和高度的块元素?如果是,这应该有效:

background: transparent url(http://placehold.it/100x150) no-repeat 75px -200px;

答案 1 :(得分:0)

也许您已在代码中的其他位置指定了背景图像的位置。你的css的其余部分是什么样的?

答案 2 :(得分:0)

如果您使用短代码作为背景属性,请同时包含该位置。您不需要将其设置为固定。试试这个:

background:url('../img/logo.png') no-repeat 75px -200px;