CSS 全尺寸背景图片

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 全尺寸背景图片相关的知识,希望对你有一定的参考价值。

/* css */
#bg {
	position:fixed;
	top:-50%;
	left:-50%;
	width:200%;
	height:200%;
}
#bg img {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	min-width:50%;
	min-height:50%;
}

/* html */
<div id="bg">
	<img src="images/background.jpg" alt="Background Image" />
</div>

以上是关于CSS 全尺寸背景图片的主要内容,如果未能解决你的问题,请参考以下文章

CSS 背景图像全尺寸

css 如何让图片全屏的问题

全尺寸背景图像

css如何让图片根据显示器的尺寸来居中显示?

CSS 全尺寸bg图像

CSS Sprite 图像和响应式设计。它是不是同时加载全尺寸和响应尺寸?