设置文档背景的样式:
document.body.style.background = "#f3f3f3 url('img_tree.png') no-repeat right top";
亲自试一试 »
下面有更多 "亲自试一试" 示例。
背景属性以简写形式设置或返回最多八个单独的背景属性。
使用此属性,您可以设置/返回以下一项或多项(按任意顺序):
DOM属性 | CSS 属性 |
---|---|
背景附件 | 背景附件 |
背景剪辑 | 背景剪辑 |
背景颜色 | 背景颜色 |
背景图 | 背景图 |
背景来源 | 背景起源 |
背景位置 | 背景位置 |
背景重复 | 背景重复 |
背景大小 | 背景大小 |
上述属性也可以使用单独的样式属性进行设置。强烈建议非高级作者使用单独的属性,以获得更好的可控性。
返回背景属性:
object.style.background
设置背景属性:
object.style.background
= "color image repeat attachment position size origin clip|initial|inherit"
Value | Description |
---|---|
attachment | Sets if a background image is fixed or scrolls |
clip | Sets the painting area of a background image |
color | Sets the background color of an element |
image | Sets the background image for an element |
origin | Sets the background positioning area |
position | Sets the starting position of a background image |
repeat | Sets how a background image will be repeated |
size | Sets the size of a background image |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 透明无重复滚动0%0%自动填充框边框框 |
---|---|
返回值: | 一个字符串,代表元素的背景 |
CSS版本 | CSS1 |
background
是 CSS1 (1996) 的一项功能。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
CSS3 (1999) 中添加了 3 个新属性:
更改 DIV 元素的背景:
document.getElementById("myDIV").style.background = "url('smiley.gif') blue repeat-x center";
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!