Top Border Image in CSS3

后端 未结 5 1632
终归单人心
终归单人心 2021-01-01 19:34

I\'ve used border, border-top-image, border-image and none seem to do what I am after.

I have the following CSS:



        
5条回答
  •  鱼传尺愫
    2021-01-01 20:23

    I don't think that there is any such property like border-top-image to give image border to any side of an element - Use

    border-image:url('http://www.mycelticcrossstitch.com/celtic%20knot%20cross%20stitch.jpg') 30 30 round;
    

    but it give border around all sides. To remove border around rest of the sides I gave -

    border-bottom:0;
    border-left:0;
    border-right:0;
    

    It worked and here is my fiddle - http://jsfiddle.net/ashwyn/c7WxG/1/

提交回复
热议问题