css3 背景图缩写

 body{
            /* css3背景图缩写 */
            background: #eee url('xs.png') no-repeat fixed 50% 50%;
            
            /*相当于
                backgorund-color:#eee
                background-images: url('xs.png')
                background-repeat:no-repeat
                background-attachment: scroll//背景图像会随着页面其余部分的滚动而移动
                background-position:50% 50% ;
            */
        }

 

你可能感兴趣的:(CSS)