码迷,mamicode.com
首页 > 其他好文 > 详细

background-attachment与background-position 的问题

时间:2018-09-06 21:01:39      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:chm   pre   position   .com   no-repeat   tle   htm   lang   span   

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 的问题

标签:chm   pre   position   .com   no-repeat   tle   htm   lang   span   

原文地址:https://www.cnblogs.com/amy2017/p/9600846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!