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
Background position, margin-top?
提问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 top
for 50px
and you're set.
如果您的意思是希望背景图像本身从顶部偏移 50 像素,就像背景边距一样,那么只需关闭top
for 即可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;
}