首页htmlbox_shadowCSS Property Value - 如何box-shadow: 0 0 0 5px #f00 inset;

CSS Property Value - 如何box-shadow: 0 0 0 5px #f00 inset;

我们想知道如何box-shadow: 0 0 0 5px #f00 inset;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  height: 40px;
  width: 60px;
  border: 5px solid #00a;
  box-shadow: 0 0 0 5px #f00 inset;
  padding: 3px;
}
</style>
</head>
<body>
  <div></div>
</body>
</html>