背景位置,保证金顶部?

时间:2012-03-16 19:56:52

标签: css

我目前将背景设置为右上角:

#thedivstatus {
    background-image: url("imagestatus.gif");
    background-position: right top;
    background-repeat: no-repeat;
}

但是! 我需要通过上面的渲染添加margin-top:50px;。有人能给我一个建议吗?

由于

3 个答案:

答案 0 :(得分:56)

如果您的意思是希望背景图像本身偏离顶部50个像素,就像背景边距一样,那么只需为top切换50px即可设置。< / p>

#thedivstatus {
    background-image: url("imagestatus.gif");
    background-position: right 50px;
    background-repeat: no-repeat;
}

答案 1 :(得分:3)

 background-image: url(/images/poster.png);
 background-position: center;
 background-position-y: 50px;
 background-repeat: no-repeat;

答案 2 :(得分:-2)

#div-name

{

  background-image: url('../images/background-art-main.jpg');
  background-position: top right 50px;
  background-repeat: no-repeat;
}