在css中background-attachment: fixed的意思是什么

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在css中background-attachment: fixed的意思是什么相关的知识,希望对你有一定的参考价值。

在CSS中,首先需要理解background-attachment的意思是定义背景图片随滚动轴的移动方式,取值方式有:scroll | fixed | inherit,scroll: 随着页面的滚动轴背景图片将移动,fixed: 随着页面的滚动轴背景图片不会移动,inherit: 继承,具体的用法通过代码来理解:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>CSS background-attachment 属性示例</title>
<style type="text/css" media="all">
body

background-image:url('/images/list-orange.png'); //图片的地址你可以去自行添加,这里只是假设的一种图片
background-attachment:fixed;
background-repeat:repeat-x;
background-position:center center;
position:absolute;
height:5000px;

</style>
</head>
<body>
<p>拖动滚动条,并且注意中间有一条橙色线并不会随滚动条的下移而上移.</p>
参考技术A background-attachment :定义背景图片随滚动轴的移动方式
取值: scroll | fixed | inherit
scroll: 随着页面的滚动轴背景图片将移动
fixed: 随着页面的滚动轴背景图片不会移动
inherit: 继承初始值: scroll
继承性: 否
适用于: 所有元素
参考技术B background-attachment:设置或检索背景图像是随对象内容滚动还是固定的;
fixed:固定本回答被提问者采纳
参考技术C 背景图片固定,不随滚动条滚动 参考技术D ..不加这句.firefox之类的浏览器就不兼容..

CSS 在CSS中显示Box Shadow

&lt;style type=&quot;text/css&quot;&gt;
.shadow {
    -moz-box-shadow: 4px 5px 5px 1px #777;
    -webkit-box-shadow: 4px 5px 5px 1px #777;
    box-shadow: 4px 5px 5px 1px #777;
}
 
.shadowIE {
    background-color:#f5f5f5; /* need for IE*/
    -moz-box-shadow: 4px 5px 5px 1px #777;
    -webkit-box-shadow: 4px 5px 5px 1px #777;
    box-shadow: 4px 5px 5px 1px #777;
    filter: progid:DXImageTransform.Microsoft.Blur
    (PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);
    -ms-filter: &quot;progid:DXImageTransform.Microsoft.Blur
     (PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)&quot;;
    zoom: 1;
}
.shadowIE .content {
    position:relative; 
    background-color:#f5f5f5;
}
&lt;/style&gt;
 
&lt;div class=&quot;shadow&quot;&gt;
    This is a Box-shadowed element.
&lt;/div&gt;
 
&lt;div class=&quot;shadowIE&quot;&gt;
    &lt;div class=&quot;content&quot;&gt;
        This is a Box-shadowed element.
    &lt;/div&gt;
&lt;/div&gt;

以上是关于在css中background-attachment: fixed的意思是什么的主要内容,如果未能解决你的问题,请参考以下文章

如何在CSS中调用公用css

怎么在html中调用css文件?

如何获取网页中的css

CSS 技巧一则 -- 在 CSS 中使用三角函数绘制曲线图形及展示动画

如何在 jQuery.css() 方法中为所有浏览器编写 CSS?

css CSS关键帧在转换和动画syntax.css中淡入淡出