background-attachment: scroll | fixed | local | initial | inherit;
<!DOCTYPE html>
<html>
<head>
<title>
background-attachment property
</title>
<style>
#example {
background-image: url("lion.png");
font-size: 35px;
border: 4px solid red;
color: white;
background-position: center;
background-color: green;
background-repeat: no-repeat;
background-attachment: scroll;
}
</style>
</head>
<body>
<h1> background-attachment: scroll;</h1>
<p> 如果屏幕上没有滚动条,请尝试调整浏览器窗口的大小以查看效果。 </p>
<div id="example">
<p>
欢迎来到bianchenghao6.com平台。立地货的目的是使大家可以轻松学习各种知识,提供各种简单且深入的教程。在这个世界上没有人是完美的,没有什么是永恒的,但是我们可以尝试变得更好。
</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
background-attachment property
</title>
<style>
#example {
background-image: url("lion.png");
font-size: 35px;
border: 4px solid red;
color: white;
background-position: center;
background-color: green;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
</head>
<body>
<h1> background-attachment: fixed;</h1>
<p> 如果屏幕上没有滚动条,请尝试调整浏览器窗口的大小以查看效果。</p>
<div id="example">
<p>
欢迎来到bianchenghao6.com平台,立地货的目的是使大家可以轻松学习各种知识,提供各种简单且深入的教程。在这个世界上没有人是完美的,没有什么是永恒的,但是我们可以尝试变得更好。
</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
background-attachment property
</title>
<style>
#example {
background-image: url("lion.png");
font-size: 35px;
border: 4px solid red;
color: white;
background-position: center;
background-color: green;
background-repeat: no-repeat;
background-attachment: local;
}
</style>
</head>
<body>
<h1> background-attachment: local;</h1>
<p>如果屏幕上没有滚动条,请尝试调整浏览器窗口的大小以查看效果。</p>
<div id="example">
<p>
欢迎来到bianchenghao6.com平台,立地货的目的是使大家可以轻松学习各种知识,提供各种简单且深入的教程。在这个世界上没有人是完美的,没有什么是永恒的,但是我们可以尝试变得更好。
</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
background-attachment property
</title>
<style>
#example {
background-image:url("https://bianchenghao6.com/images/logo.png");
height: 500px;
border: 4px solid red;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed, scroll;
}
</style>
</head>
<body>
<h1> background-attachment: scroll;</h1>
<p>如果屏幕上没有滚动条,请尝试调整浏览器窗口的大小以查看效果。</p>
<div id="example">
</div>
</body>
</html>