使背景从页面顶部有一个保证金

时间:2011-08-16 18:20:45

标签: css

尝试了

background-position:100px 0 0 0;

CSS目前正在

background: white url(images/bg.jpg) no-repeat top fixed center;

我试图将background inline放在图片的顶部。

谢谢,

塔拉

1 个答案:

答案 0 :(得分:1)

background-position属性与marginpadding的工作方式不同。您只需声明两个值,而不是声明所有四个边:水平位置和垂直位置。所以在你的情况下,你可能想要这样的东西:

background:white url(images/bg.jpg) no-repeat left 100px;

默认情况下,它假设您从左上角开始。所以left 100px说,“保持在左侧,但从顶部向下移动100px。”你甚至可以使用负值。 More info on background-position