【HTML】铺满背景图片

图片[1]-【HTML】铺满背景图片-七年博客

示例:

background: url("=qq&nk=2065843899&s=5") no-repeat center center;
background-size: cover;
background-attachment: fixed;
background-color: #CCCCCC;

解决方案:

给body添加以下css样式

background: url("图片路径") no-repeat center center;/*加载背景图并使背景图不平铺 */
background-size: cover;/* 让背景图基于容器大小伸缩 */
background-attachment: fixed;/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-color: #CCCCCC;/* 设置背景颜色,背景图加载过程中会显示背景色 */
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容