1. 程式人生 > >background-attachment與background-position 的問題

background-attachment與background-position 的問題

inf dal div margin eight 解決 att fixed png

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 的問題