CSS3选择器

2017-10-12  本文已影响0人  闫子扬

常用选择器

border-image-repeat : stretch | repeat | round

默认值:stretch

stretch: 指定用拉伸方式来填充边框背景图

repeat: 指定用平铺方式来填充边框背景图,当图片碰到边界时, 如果超过则被截断

round: 指定用平铺方式来填充边框背景图,图片会根据边框的尺寸,动态调整图片的大小直至正好可以铺满整个边框

    div{
        width:200px;
        height:100px;
        text-align: center;
        font:bold 20px/100px 微软雅黑;
    }
    div{
        border:1em solid #ccc;
        border-width: 28px;
        border-image-source: url(images/bg.png);
        border-image-slice: 33.3%;
        border-image-repeat: round;
    }
上一篇 下一篇

猜你喜欢

热点阅读