首页htmlborderPage Widget - 如何与圆角的切图像

Page Widget - 如何与圆角的切图像

我们想知道如何与圆角的切图像。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.websiteart img {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
</style>
</head>
<body>
  <div class="websiteart">
    <img
      src="http://www.w3cschool.cn/style/download.png"
      height="100" width="300" />
  </div>
</body>
</html>