CSS背景设置

来源:互联网 发布:qq农场刷金币软件 编辑:程序博客网 时间:2024/05/19 00:13
html{
    height:100%;
}

body{
    background-image: url(img.gif);
    background-repeat: no-repeat;
    background-position: top;

    background-position: right;

    background-position: bottom;  html要设置成100% 才有效果

    background-position: center;

    background-position: right top;

    等比例绽放
    background-size: cover;  

    background-size: 100%;

    background-size:contain;  
    固定背景图片
    background-attachment: fixed;
    background-attachment: scroll;

   
}
0 0