Home  >  Q&A  >  body text

css - 关于border-image

为什么我在p元素的内部写入结构时,边框图片就出不来,但是统一p格式时就可以出现呢?

单独p格式:

#p2 {
            -webkit-border-image: url(border.png) 30 30 round;
            border:15px solid transparent;
            width:300px;
            padding:10px 20px;
        }
<p id="p2">
            <span>边框图片</span>
        </p>

结果:

统一p格式:

#p2 {
            -webkit-border-image: url(border.png) 30 30 round;
        }
        p{
            border:15px solid transparent;
            width:300px;
            padding:10px 20px;
        }
<p id="p2">
            <span>边框图片</span>
        </p>

结果:

PHP中文网PHP中文网2742 days ago899

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-04-17 14:37:10

    Just mine is fine

    You check whether your css style is overridden or where words are written, and see if there are any errors in the code (similar to the highlight without highlighting)

    reply
    0
  • Cancelreply