⽹页背景图固定不动,不跟随滚动条滚动
在做⽹页的时候,当背景是⼀张完整的图⽚,不动让其跟随滚动条滚动,怎么办?下⾯详细讲解⼀下。
CSS代码⽰例-背景颜⾊属性(background-color):
<html>
<head>
<title>背景颜⾊ background-color</title>
<style type="text/css"> body {background-color:#99FF00;} </style> </head>
<body>
<p>这个HTML使⽤了CSS的background-color属性,将HTML的背景颜⾊变成翠绿⾊。<p>
</body>
</html>
演⽰结果:这个HTML使⽤了CSS的background-color属性,将HTML的背景颜⾊变成翠绿⾊。
CSS代码⽰例-背景图⽚属性(background-image):
<html><head>
<title>背景图⽚background-image</title></head>
<body > <p>这个HTML使⽤了CSS的background-image属性,设置了背景图⽚。<p>
</body></html>
演⽰结果:这个HTML使⽤了CSS的background-image属性,设置了背景图⽚。
CSS代码⽰例- 背景重复属性(background-repeat)
<html><head>
<title>背景重复 background-repeat</title>
<style type="text/css"> body {background-image:url(../images/css_tutorials/background.jpg); background-repeat:repeat-y} </style> </head>
<body>
<p>这个HTML使⽤了CSS的background-repeat属性,使背景图⽚竖向重复。<p>
<p>常⽤的background-repeat的属性值有: repeat-x(横向重复),repeat-x(横向重复), no-repeat(不重复)。</p>
<p>background-repeat属性要和background-image⼀起⽤。</p>
</body> </html>
演⽰结果:这个HTML使⽤了CSS的background-repeat属性,使背景图⽚竖向重复。常⽤的background-repeat的属性值有: repeat-x(横向重复),repeat-x(横向重复), no-repeat(不重复)。 background-repeat属性要和background-image⼀起⽤。
CSS代码⽰例-背景附着属性(background-attachment)-[背景图固定不动,不跟随滚动条滚动]:
<html><head>
<title>背景附着属性 background-attachment</title>
<style type="text/css">
body {background-image:url(../images/css_tutorials/background.jpg); background-repeat:no-repeat; background-attachment:fixed} </style>
</head>
<body>
<p>这个HTML使⽤了CSS的background-attachment属性,将背景图⽚固定,不随内容滚动⽽滚动。<p>
<p>背景附着(background-attachment)属性有两个值。⼀个是scroll,表⽰随内容滚动⽽动;⼀个是fixed,表⽰固定不动,不受内容滚动影响。缺省值是scroll。</p>
<p>background-attachment要和background-image⼀起⽤。</p>
</body></html>
css设置表格滚动条演⽰结果:这个HTML使⽤了CSS的 background-attachment 属性,将背景图⽚固定,不随内容滚动⽽滚动。
背景附着(background-attachment)属性有两个值。⼀个是scroll,表⽰随内容滚动⽽动;⼀个是fixed,表⽰固定不动,不受内容滚动影响。缺省值是scroll。background-attachment要和background-image⼀起⽤。
这个HTML使⽤了CSS的background-attachment属性,将背景图⽚固定,不随内容滚动⽽滚动。
背景附着(background-attachment)属性有两个值。⼀个是scroll,表⽰随内容滚动⽽动;⼀个是fixed,表⽰固定不动,不受内容滚动影响。缺省值是scroll。
CSS代码⽰例-背景位置属性(background-position):
<html><head>
<title>背景位置属性 background-position</title>
<style type="text/css">
body {background-image:url(../images/css_tutorials/background.jpg);background-repeat:no-repeat;background-position:20px 60px}</style>
</head>
<body>
<p>这个HTML使⽤了CSS的background-position属性。这个属性和background-image属性连在⼀起使⽤,决定了背景图⽚的最初位置。</p>
<p>上⾯的代码表⽰背景图⽚的初始位置距离⽹页最左⾯20px,距离⽹页最上⾯60px。</p>
</body></html>
演⽰结果:这个HTML使⽤了CSS的background-position属性。这个属性和background-image属性连在⼀起使⽤,决定了背景图⽚的最初位置。
上⾯的代码表⽰背景图⽚的初始位置距离⽹页最左⾯20px,距离⽹页最上⾯60px。
CSS代码⽰例-背景属性(background):
<html><head>
<title>背景属性 background</title>
<style type="text/css">body{background:#99FF00 url(../images/css_tutorials/background.jpg) no-repeat fixed 40px 100px} </style>
</head>
<body><p>这个属性是设置背景相关属性的⼀种快捷的综合写法,包括background-color, background-image, background-repeat, backgroundattachment, background-position。</p>
<p>这个HTML所⽤的背景属性表⽰,⽹页的背景颜⾊是翠绿⾊,背景是background.jpg图⽚,图⽚不重复显⽰,背景图⽚不随内容滚动⽽动,背景图⽚距离⽹页最左⾯40px,距离⽹页最上⾯100px。</p> </body></html>
演⽰结果:这个属性是设置背景相关属性的⼀种快捷的综合写法,包括background-color, background-image, background-repeat, backgroundattachment, background-position。
这个HTML所⽤的背景属性表⽰,⽹页的背景颜⾊是翠绿⾊,背景图⽚是background.jpg图⽚,背景图
⽚不重复显⽰,背景图⽚不随内容滚动⽽动,背景图⽚距离⽹页最左⾯40px,距离⽹页最上⾯100px。
这个属性是设置背景相关属性的⼀种快捷的综合写法,包括background-color, background-image, background-repeat, backgroundattachment, background-position。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。