首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >background-attachment:fixed和position : fixed的区别

background-attachment:fixed和position : fixed的区别
EN

Stack Overflow用户
提问于 2017-07-04 18:31:47
回答 1查看 355关注 0票数 0

我是CSS的初学者,我对这2…谁能解释一下background-attachment:fixed和position : fixed有什么区别?

EN

回答 1

Stack Overflow用户

发布于 2017-07-04 18:40:58

代码语言:javascript
复制
<!DOCTYPE html>
<html>
<head>
<style>
body  {
    background-image: url('w3css.gif');
    background-repeat: no-repeat;
    background-attachment: fixed;
}
p{
position: fixed;
color:Red;
}
</style>
</head>
<body>

<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>

<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>The background-image is fixed. Try to scroll down the page.</p>
<p>If you do not see any scrollbars, try to resize the browser window.</p>

</body>
</html>

Background-attachment:fixed用于定位图像,其中as,position :fixed;用于p,span,div等元素。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/44903552

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档