首页htmlborderPage Widget - 如何删除图像周围的边框

Page Widget - 如何删除图像周围的边框

我们想知道如何删除图像周围的边框。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.service {
  position: relative;
  float: left;
  clear: left;
  border: none;
}

.service a {
  border: 0;
}
</style>
</head>
<body>
  <div class="service">
    <div
      style="background-image: url('http://www.w3cschool.cn/style/download.png'); background-position: 0 0; height: 200px; width: 200px; border: none"></div>
  </div>
</body>
</html>