-2

如何在段落的边框上添加移动星

<head>
 <style type="text/css">
   #p1
   {
    border-image:
   }
</style>
</head>
<body>
 <p id="p1"> 
    paragraph 
 </p>
</body>
4

1 回答 1

0

you should show the url of the image in this case your star in the css. like so

#p1{
-webkit-border-image:url(border.png) 30 30 round; /* Safari 5 */
-o-border-image:url(border.png) 30 30 round; /* Opera */
border-image:url(border.png) 30 30 round;

}

here is a demo.

于 2013-08-03T14:42:40.103 回答