Style backgroundSize 属性
指定背景图像的大小:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> #myDIV { border: 1px solid black; width: 300px; height: 300px; background: url("/examples/smiley.gif") no-repeat; } </style> </head> <body> <p>点击“尝试一下”按钮扩大 DIV 元素的背景大小:</p> <button onclick="myFunction()">尝试一下</button> <div id="myDIV"> <h1>Hello</h1> </div> <script> function myFunction() { document.getElementById("myDIV").style.backgroundSize = "60px 120px"; } </script> </body> </html>
定义和用法
backgroundSize 属性设置或返回背景图像的大小。
浏览器支持
IE9+、Firefox、Opera、Chrome 和 Safari 支持 backgroundSize 属性。
语法
返回 backgroundSize 属性:
object.style.backgroundSize
设置 backgroundSize 属性:
object.style.backgroundSize = "auto|length|cover|contain|intial|inherit"
属性值
值 | 描述 |
---|---|
auto | 默认值。背景图像包含它的宽度和高度。 |
length | 设置背景图像的宽度和高度。第一个设置宽度,第二个值设置高度。如果只给出一个值,则第二个值被设置为 "auto"。 |
percentage | 以父元素的百分比设置背景图像的宽度和高度。第一个设置宽度,第二个值设置高度。如果只给出一个值,则第二个值被设置为 "auto"。 |
cover | 此时会保持图像的纵横比,并将图像缩放成将完全覆盖背景区域的最小尺寸。背景图像的一些部分可能不会显示在背景定位区域内。 |
contain | 此时会保持图像的纵横比,并将图像缩放成将适合内容区域的最大尺寸。 |
initial | 设置该属性为它的默认值。请参阅 initial。 |
inherit | 从父元素继承该属性。请参阅 inherit。 |
技术细节
默认值: | auto |
---|---|
返回值: | 字符串,表示元素的 background-size 属性。 |
CSS 版本 | CSS3 |
相关文章
CSS 参考手册:background-size 属性