background-attachment与background-position 的问题
Posted amy2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了background-attachment与background-position 的问题相关的知识,希望对你有一定的参考价值。
background-attachment:fixed | scroll
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>练习 1</title> <style> body{ margin: 0; } .backgroundCss{ width: 400px; height: 600px; border: 1px solid indianred; background-color: blanchedalmond; background-image: url(‘img/background.png‘); background-repeat: no-repeat; background-position: right 100px; background-attachment: fixed; } </style> </head> <body> <div class="backgroundCss"></div> </body>
效果:
理想效果为:
更改background-attachment:scroll即可解决。
以上是关于background-attachment与background-position 的问题的主要内容,如果未能解决你的问题,请参考以下文章
css样式-背景 background-attachment