Wiki only refer to: shadowColor(color), shadowOffset(object), shadowOpacity(number) and shadowRadius(number). It is possible to use spread radius or this attribute is not suported?
body {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
div {
width: 200px;
height: 200px;
box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.2);
}
<div/>