美文网首页
背景原点

背景原点

作者: 琪33 | 来源:发表于2018-04-25 10:52 被阅读0次
     <style>
            .box{
                width: 500px;
                height: 500px;
                border: 30px solid rgba(0,0,255,0.3);
                padding:30px;
    
                background:url(images/baby0.jpg) no-repeat;
                background-size: cover;
    
                /* 背景原点  控制背景从什么地方开始显示*/
                /*(默认值)*/
                /*background-origin: padding-box;*/
                /*从border-box开始显示*/
                /*background-origin: border-box;*/
                /*从content-box开始显示*/
                background-origin: content-box;
    
            /*(默认值)*/
            }
        </style>
    </head>
    <body>
        <div class="box">
    
        </div>
    </body>
    

    相关文章

      网友评论

          本文标题:背景原点

          本文链接:https://www.haomeiwen.com/subject/frjelftx.html