轻松上手,快乐学习!

CSS 参考手册

CSS 参考手册CSS 浏览器支持CSS 选择器参考手册CSS 函数参考手册CSS 听觉参考手册CSS 网络安全字体CSS 动画相关属性CSS 单位Px/Em 换算CSS 颜色CSS 合法颜色值CSS 默认值参考手册CSS 实体

CSS 属性

align-contentalign-itemsalign-selfallanimationanimation-delayanimation-directionanimation-durationanimation-fill-modeanimation-iteration-countanimation-nameanimation-play-stateanimation-timing-functionbackface-visibilitybackgroundbackground-attachmentbackground-blend-modebackground-clipbackground-colorbackground-imagebackground-originbackground-positionbackground-repeatbackground-sizeborderborder-bottomborder-bottom-colorborder-bottom-left-radiusborder-bottom-right-radiusborder-bottom-styleborder-bottom-widthborder-collapseborder-colorborder-imageborder-image-outsetborder-image-repeatborder-image-sliceborder-image-sourceborder-image-widthborder-leftborder-left-colorborder-left-styleborder-left-widthborder-radiusborder-rightborder-right-colorborder-right-styleborder-right-widthborder-spacingborder-styleborder-topborder-top-colorborder-top-left-radiusborder-top-right-radiusborder-top-styleborder-top-widthborder-widthbottombox-decoration-breakbox-shadowbox-sizingbreak-afterbreak-beforebreak-insidecaption-sidecaret-color@charsetclearclipclip-pathcolorcolumn-countcolumn-fillcolumn-gapcolumn-rulecolumn-rule-colorcolumn-rule-stylecolumn-rule-widthcolumn-spancolumn-widthcolumnscontentcounter-incrementcounter-resetcursordirectiondisplayempty-cellsfilterflexflex-basisflex-directionflex-flowflex-growflex-shrinkflex-wrapfloatfont@font-facefont-familyfont-feature-settingsfont-kerningfont-sizefont-size-adjustfont-stretchfont-stylefont-variantfont-weightgridgrid-areagrid-auto-columnsgrid-auto-flowgrid-auto-rowsgrid-columngrid-column-endgrid-column-gapgrid-column-startgrid-gapgrid-rowgrid-row-endgrid-row-gapgrid-row-startgrid-templategrid-template-areasgrid-template-columnsgrid-template-rowshanging-punctuationheighthyphens@importisolationjustify-content@keyframesleftletter-spacingline-heightlist-stylelist-style-imagelist-style-positionlist-style-typemarginmargin-bottommargin-leftmargin-rightmargin-topmax-heightmax-width@mediamin-heightmin-widthmix-blend-modeobject-fitobject-positionopacityorderoutlineoutline-coloroutline-offsetoutline-styleoutline-widthoverflowoverflow-xoverflow-ypaddingpadding-bottompadding-leftpadding-rightpadding-toppage-break-afterpage-break-beforepage-break-insideperspectiveperspective-originpointer-eventspositionquotesresizerightscroll-behaviortab-sizetable-layouttext-aligntext-align-lasttext-decorationtext-decoration-colortext-decoration-linetext-decoration-styletext-indenttext-justifytext-overflowtext-shadowtext-transformtoptransformtransform-origintransform-styletransitiontransition-delaytransition-durationtransition-propertytransition-timing-functionunicode-bidiuser-selectvertical-alignvisibilitywhite-spacewidthword-breakword-spacingword-wrapwriting-modez-index


CSS background-size 属性



实例

使用 "auto" 和像素指定背景图像的大小:

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 300px 100px;
}
亲自试一试 »

下面有更多实例。


定义和用法

background-size 属性指定背景图像的大小。

有四种不同的语法可用于此属性:关键字语法 ("auto", "cover" , "contain"), 单值语法 (设置图像宽度 (高度变为 "auto"), 双值语法 (第一个值:图像宽度,第二个值:高度)和多背景语法(用逗号分隔)。

默认值: auto
继承性: no
支持动画: yes. 阅读有关动画的信息 测试一下
版本: CSS3
JavaScript 语法: object.style.backgroundSize="60px 120px" 测试一下

浏览器支持

表中的数字表示支持该属性的第一个浏览器版本。

紧跟在 -webkit-, -moz- 或 -o- 前的数字为支持该前缀属性的第一个浏览器版本号。

属性
background-size  4.0
1.0 -webkit-
9.0 4.0
3.6 -moz-
4.1
3.0 -webkit-
10.5
10.0 -o-

语法

background-size: auto|length|cover|contain|initial|inherit;

属性值

描述 试一试
auto 默认值。背景图像将以其原始大小显示 亲自试一试 »
length 设置背景图片高度和宽度。第一个值设置宽度,第二个值设置的高度。如果只给出一个值,第二个是设置为 auto(自动)。 阅读长度单位 亲自试一试 »
percentage 将计算相对于背景定位区域的百分比。第一个值设置宽度,第二个值设置的高度。如果只给出一个值,第二个是设置为 auto(自动) 亲自试一试 »
cover 此时会保持图像的纵横比并将图像缩放成将完全覆盖背景定位区域的最小大小。 亲自试一试 »
contain 此时会保持图像的纵横比并将图像缩放成将适合背景定位区域的最大大小。 亲自试一试 »
initial 将此属性设置为其默认值。请参阅 initial 亲自试一试 »
inherit 从其父元素继承此属性。请参阅 inherit

更多实例

实例

使用百分比指定背景图像的大小:

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 75% 50%;
}
亲自试一试 »

实例

使用 cover 指定背景图像的大小:

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
亲自试一试 »

实例

使用 contain 指定背景图像的大小:

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
亲自试一试 »

实例

这里我们有两张背景图片。我们用 contain 指定第一个背景图像的大小,用 cover 指定第二个背景图像的大小:

#example1 {
  background: url(img_tree.gif), url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: contain, cover;
}
亲自试一试 »

实例

使用不同的背景属性创建 "hero" 图像:

.hero-image {
  background-image: url("photographer.jpg"); /* 使用的图像 */
  background-color: #cccccc; /* 图像不可用时使用 */
  height: 500px; /* 您必须设置指定的高度 */
  background-position: center; /* 居中图像 */
  background-repeat: no-repeat; /* 不要重复图像 */
  background-size: cover; /* 调整背景图像的大小以覆盖整个容器 */
}
亲自试一试 »

相关页面

CSS 教程: CSS Backgrounds

HTML DOM 参考手册: backgroundSize 属性