首页htmlborderPage Widget - 如何设置不透明度,除div的边框

Page Widget - 如何设置不透明度,除div的边框

我们想知道如何设置不透明度,除div的边框。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#border {
  border: 1px solid #000;
  display: inline-block;
}

.content {
  opacity: 0.1;
}
</style>
</head>
<body>
  <div id="border">
    <div class="content">hello</div>
  </div>
</body>
</html>