问答详情
源自:4-1 4. border与background定位

如何获得讲师的代码

有没有讲师的代码呀

提问者:celinezjn 2016-12-28 11:09

个回答

  • Lastlove
    2016-12-29 14:06:36

    老师的代码没有,我有个自己写的你可以参考下!

    <style>
                body {
                    font: 14px/1.4286 "microsoft yahei";
                }
                .a{
                    width: 200px;
                    height: 100px;
                    background:  #0066CC url(img/golo.png) no-repeat;
                    background-position:  40px;
                }
                .b{
                    width:200px;
                    height: 100px;
                    background: #0066CC url(img/golo.png) no-repeat;
                    background-position: 100% 40px;
                }
            </style>
        </head>
        <body>
            <h2>background定位的局限</h2>
            <div class="a"></div><br />
            <div class="b"></div>
        </body>