CSS 背景位置,边距顶部?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9743717/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 03:17:31  来源:igfitidea点击:

Background position, margin-top?

css

提问by doc holiday

I currently have my background set to top right as:

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

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

BUT!I need to add a margin-top:50px;from where its rendering via above. Could anyone give me a suggestion?

但!我需要margin-top:50px;从上面的渲染位置添加一个。谁能给我一个建议?

Thanks

谢谢

回答by BoltClock

If you mean you want the background image itself to be offset by 50 pixels from the top, like a background margin, then just switch out the topfor 50pxand you're set.

如果您的意思是希望背景图像本身从顶部偏移 50 像素,就像背景边距一样,那么只需关闭topfor 即可50px

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

回答by Ajay Vijayasarathy

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

回答by Lele Carabina

#div-name

{

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