我希望在某个地方有固定的背景附件

时间:2012-07-30 11:51:20

标签: css background attachment

Iam new here and coding in coding。 我想要将背景附件放置在一个非常确定的位置 顶部,左上角,右上角等都无法完成这项工作,我想要一个最准确的位置 例如。附件的左上角要放置在100,200

1 个答案:

答案 0 :(得分:0)

如果您希望在CSS中完成,请转到此

div
{
    background-image:url('your-img-url');
    background-repeat:no-repeat;
    background-position:100px 200px;
    background-attachment:fixed;
}