首页htmlborder_imageCSS Property Value - 如何border-image: url 100 stretch;

CSS Property Value - 如何border-image: url 100 stretch;

我们想知道如何border-image: url 100 stretch;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.other-image {
  border-width: 100px;
  -moz-border-image:
    url("http://www.w3.org/TR/css3-background/groovy-border-image-slice.png")
    100 stretch;
  -webkit-border-image:
    url("http://placehold.it/20x20")
    100 stretch;
  border-image:url("http://placehold.it/20x20") 100 stretch;
}
</style>
</head>
<body>
  <!-- Border Images -->
  <textarea class="other-image">some default text</textarea>
</body>
</html>