html让背景图片自适应填充整个页面

本文介绍了三种实现网页全屏背景图的方法:使用img标签并设置绝对定位;利用CSS属性background-size:cover使背景图自适应屏幕大小;通过设定background-size为100% 100%结合background-attachment:fixed实现。
摘要由CSDN通过智能技术生成

方法一:img标签设置

body类的样式:去除默认外边距和内外距为0;

body中写img标签:图片设置宽高都为100%,位置为absolute;

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title></title>
		<style>
			body {
				padding: 0;
				margin: 0;
			}
			
			img {
				position: absolute;
				width: 100%;
				height: 100%;
			}
		</style>
	</head>

	<body>
		<img src="img/bottom.jpg">
	</body>

</html>

方法二:background-size:cover;属性指定背景图片大小

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title>练习</title>
		<style>
			body {
				/*加载背景图:图片地址 不平铺 */
				background: url(img/l.png) no-repeat center center;
				/* 让背景图基于容器大小伸缩 */
				background-size: cover;
				/* background-attachment设置背景图像是否固定或者随着页面的其余部分滚动。
					scroll 背景图片随着页面的滚动而滚动,这是默认的。
 					fixed 背景图片不会随着页面的滚动而滚动。
  					local 背景图片会随着元素内容的滚动而滚动。*/
				background-attachment: fixed;
			}
		</style>
	</head>

	<body>

	</body>

</html>

 方法三:background-size:100% 100%;与background-attachment:fixed;设置

<!DOCTYPE html>
<html>

	<head>
		<meta charset="utf-8" />
		<title>练习</title>
		<style>
			body {
				/*加载背景图:图片地址 不平铺 */
				background: url(img/l.png) no-repeat;
				/* 让背景图基于容器大小伸缩 */
				background-size: 100% 100%;
				background-attachment: fixed;
			}
		</style>
	</head>

	<body>

	</body>

</html>

 效果展示:

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

上岸啦小王

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值