首页htmlborderPage Widget - 如何创建CSS3边框图像渐变

Page Widget - 如何创建CSS3边框图像渐变

我们想知道如何创建CSS3边框图像渐变。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  width: 200px;
  height: 225px;
  background: #DFDFDF;
  border-style: solid;
  border-width: 15px;
  -webkit-border-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 1)
    1%, rgba(41, 184, 229, 1) 50%, rgba(255, 255, 255, 1) 100%);
}
</style>
</head>
<body>
  <div></div>
</body>
</html>