如何在段落的边框上添加移动星
<head>
<style type="text/css">
#p1
{
border-image:
}
</style>
</head>
<body>
<p id="p1">
paragraph
</p>
</body>
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.