尝试了
background-position:100px 0 0 0;
CSS目前正在
background: white url(images/bg.jpg) no-repeat top fixed center;
我试图将background inline放在图片的顶部。
谢谢,
塔拉
答案 0 :(得分:1)
background-position
属性与margin
或padding
的工作方式不同。您只需声明两个值,而不是声明所有四个边:水平位置和垂直位置。所以在你的情况下,你可能想要这样的东西:
background:white url(images/bg.jpg) no-repeat left 100px;
默认情况下,它假设您从左上角开始。所以left 100px
说,“保持在左侧,但从顶部向下移动100px。”你甚至可以使用负值。 More info on background-position