--- title: background-size slug: Web/CSS/background-size tags: - CSS - CSS Background - 背景 translation_of: Web/CSS/background-size ---
background-size
设置背景图片大小。图片可以保有其原有的尺寸,或者拉伸到新的尺寸,或者在保持其原有比例的同时缩放到元素的可用空间的尺寸。
{{EmbedInteractiveExample("pages/css/background-size.html")}}
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
/* 关键字 */ background-size: cover background-size: contain /* 一个值: 这个值指定图片的宽度,图片的高度隐式的为auto */ background-size: 50% background-size: 3em background-size: 12px background-size: auto /* 两个值 */ /* 第一个值指定图片的宽度,第二个值指定图片的高度 */ background-size: 50% auto background-size: 3em 25% background-size: auto 6px background-size: auto auto /* 逗号分隔的多个值:设置多重背景 */ background-size: auto, auto /* 不同于background-size: auto auto */ background-size: 50%, 25%, 25% background-size: 6px, auto, contain /* 全局属性 */ background-size: inherit; background-size: initial; background-size: unset;
<div id="container"> <div class="subcontainer contain">contain</div> <div class="subcontainer cover">cover</div> <div class="subcontainer width">120px</div> <div class="subcontainer width-height">120px 200px</div> </div>
#container { width: 100%; display:flex; justify-content: space-around; height: 300px; overflow: scroll; background-color: #EEEEEE; } .subcontainer { width: 100%; max-width: 200px; margin: 8px; padding: 5px; background-color: white; background-image: url("https://mdn.mozillademos.org/files/15195/eagle.jpg"); background-repeat: no-repeat; color: white; font-family: monospace; } .contain { background-size: contain; } .cover { background-size: cover; } .width { background-size: 120px; } .width-height { background-size: 120px 200px; }
{{EmbedLiveSample("background-size", 1200, 300, "", "", "example-outcome-frame")}}
注意:没有被背景图片覆盖的背景区域仍然会显示用{{cssxref("background-color")}}属性设置的背景颜色。此外,如果背景图片设置了透明或者半透明属性,衬在背景图片后面的背景色也会显示出来。
{{cssinfo}}
单张图片的背景大小可以使用以下三种方法中的一种来规定:
当通过宽度和高度值来设定尺寸时,你可以提供一或者两个数值:
auto。
每个值可以是<length>
, 是 <percentage>
, 或者 auto
.
示例:
background-size: contain;
background-size: 50%;
background-size: 3em;
background-size: auto 1em;
background-size: 50% 25%;
为了设定超过一张以上的图片尺寸时,需要提供多项数值,它们通过逗号分隔。
background-size: 50% 25%, contain, 3em;
<length>
{{cssxref("<length>")}}
值,指定背景图片大小,不能为负值。<percentage>
{{cssxref("<percentage>")}}
值,指定背景图片相对背景区(background positioning area)的百分比。背景区由{{cssxref("background-origin")}}设置,默认为盒模型的内容区与内边距,也可设置为只有内容区,或者还包括边框。如果{{cssxref("background-attachment","attachment")}} 为fixed
,背景区为浏览器可视区(即视口),不包括滚动条。不能为负值。auto
cover
contain
值相反,cover
值尽可能大的缩放背景图像并保持图像的宽高比例(图像不会被压扁)。该背景图以它的全部宽或者高覆盖所在容器。当容器和背景图大小不同时,背景图的 左/右 或者 上/下 部分会被裁剪。contain
contain
尽可能的缩放背景并保持图像的宽高比例(图像不会被压缩)。该背景图会填充所在的容器。当背景图和容器的大小的不同时,容器的空白区域(上/下或者左/右)会显示由 background-color 设置的背景颜色。位图一定有固有尺寸与固有比例,矢量图可能两者都有,也可能只有一个。渐变视为只有固有尺寸或者只有固有比例的图片。
This behavior changed in Gecko 8.0. Before this, gradients were treated as images with no intrinsic dimensions, with an intrinsic proportion identical to that of the background positioning area.
由 {{cssxref("-moz-element")}} 生成的背景图片,(which actually match an element) are currently treated as images with the dimensions of the element, or of the background positioning area if the element is SVG, with the corresponding intrinsic proportion.
背景图片大小计算:
background-size
的两个值并且不是auto
:contain
或 cover
:auto
或 auto auto
:contain
。如果有一个长度与比例,则由此长度与比例计算大小。如果有一个长度但是没有比例,则使用此长度与背景区相应的长度。auto
另一个不是auto:注意,对于没有固有尺寸或固有比例的矢量图不是所有的浏览器都支持。特别注意测试Firefox 7- 与Firefox 8+,以确定不同之处能否接受。
background-size: cover 演示
与 background-size: contain 演示
在新窗口打开,这样你可以看到当背景区大小变化时 contain
与 cover
是怎样的。 系列演示:background-size
及其与background-*属性
的关联 很好的说明了单独使用 background-size
及与其它属性共同使用。
如果用渐变作为背景并且对它使用了background-size
,最好不要只用一个auto, 或者只指定一个宽度值 (例如 background-size: 50%
)。对这两种情况 Firefox 8有所改变, 并且目前各浏览器表现不一致,不是全部浏览器都完全支持 CSS3 background-size
规范 与 CSS3 Image Values gradient 规范 。
.bar { width: 50px; height: 100px; background-image: gradient(...); /* 不推荐 */ background-size: 25px; background-size: 50%; background-size: auto 50px; background-size: auto 50%; /* 可行 */ background-size: 25px 50px; background-size: 50% 50%; }
特别不推荐对渐变px与auto
一起用, 因为Firefox 8之前不能重复渲染,并且对于没有实现Firefox 8渲染特性的浏览器,不知道指定了背景的元素的确切大小。
规范 | 状态 | 说明 |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#the-background-size', 'background-size')}} | {{Spec2('CSS3 Backgrounds')}} | Initial definition |
{{Compat("css.properties.background-size")}}
Though Internet Explorer 8 doesn't support the background-size
property, it is possible to emulate some of its functionality using the non-standard -ms-filter
property:
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='path_relative_to_the_HTML_file', sizingMethod='scale')";
This simulates the value cover
.
While this property was added in Firefox 3.6, it is possible to stretch a image fully over the background in Firefox 3.5 by using {{cssxref("-moz-border-image")}}.
.foo { background-image: url(bg-image.png); -webkit-background-size: 100% 100%; /* Safari 3.0 */ -moz-background-size: 100% 100%; /* Gecko 1.9.2 (Firefox 3.6) */ -o-background-size: 100% 100%; /* Opera 9.5 */ background-size: 100% 100%; /* Gecko 2.0 (Firefox 4.0) and other CSS3-compliant browsers */ -moz-border-image: url(bg-image.png) 0; /* Gecko 1.9.1 (Firefox 3.5) */ }