首页 > 其他分享 >html使背景图片充满整个屏幕

html使背景图片充满整个屏幕

时间:2022-12-11 12:11:22浏览次数:44  
标签:repeat html background 屏幕 背景图 背景图片

html使背景图片充满整个屏幕

 

body{
/* 加载背景图片 */
background-image: url(bgimg.jpg);
/* 背景图垂直、水平均居中 */
background-position: center center;
/* 背景图不平铺 */
background-repeat: no-repeat;
/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-attachment: fixed; /*此条属性必须设置否则可能无效*/
/* 让背景图基于容器大小伸缩 */
background-size: cover;
}

标签:repeat,html,background,屏幕,背景图,背景图片
From: https://www.cnblogs.com/apolloren/p/16973254.html

相关文章