background-attachment
试试看
语法
css
/* Keyword values */
background-attachment: scroll;
background-attachment: fixed;
background-attachment: local;
/* Global values */
background-attachment: inherit;
background-attachment: initial;
background-attachment: revert;
background-attachment: revert-layer;
background-attachment: unset;
background-attachment
属性指定为以下列表中的关键字值之一。
值
正式定义
初始值 | scroll |
---|---|
应用于 | 所有元素。它也适用于::first-letter 和 ::first-line 。 |
继承 | 否 |
计算值 | 如指定 |
动画类型 | 离散 |
正式语法
示例
简单示例
HTML
html
<p>
There were doors all round the hall, but they were all locked; and when Alice
had been all the way down one side and up the other, trying every door, she
walked sadly down the middle, wondering how she was ever to get out again.
</p>
CSS
css
p {
background-image: url("starsolid.gif");
background-attachment: fixed;
}
结果
多个背景图像
此属性支持多个背景图像。您可以为每个背景指定不同的<attachment>
,用逗号分隔。每个图像都与相应的<attachment>
类型匹配,从第一个指定到最后一个。
HTML
html
<p>
There were doors all round the hall, but they were all locked; and when Alice
had been all the way down one side and up the other, trying every door, she
walked sadly down the middle, wondering how she was ever to get out again.
Suddenly she came upon a little three-legged table, all made of solid glass;
there was nothing on it except a tiny golden key, and Alice's first thought
was that it might belong to one of the doors of the hall; but, alas! either
the locks were too large, or the key was too small, but at any rate it would
not open any of them. However, on the second time round, she came upon a low
curtain she had not noticed before, and behind it was a little door about
fifteen inches high: she tried the little golden key in the lock, and to her
great delight it fitted!
</p>
CSS
css
p {
background-image: url("starsolid.gif"), url("startransparent.gif");
background-attachment: fixed, scroll;
background-repeat: no-repeat, repeat-y;
}
结果
规范
规范 |
---|
CSS 背景和边框模块级别 3 # the-background-attachment |
浏览器兼容性
BCD 表格仅在浏览器中加载