首页htmlbox_shadowCSS Property Value - 如何box-shadow: inset 0px 3px 0px yellow,inset 0px -3px 0px darkred,-3px -4px -0px blue;

CSS Property Value - 如何box-shadow: inset 0px 3px 0px yellow,inset 0px -3px 0px darkred,-3px -4px -0px blue;

我们想知道如何box-shadow: inset 0px 3px 0px yellow,inset 0px -3px 0px darkred,-3px -4px -0px blue;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#test {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: blue;
  box-shadow: inset 0px 3px 0px yellow, inset 0px -3px 0px darkred, -3px -4px -0px blue;
}

</style>
</head>
<body>
  <div id="test"></div>
</body>
</html>